Online Course Support

You are working in the default database and want to list all the data in the crayons table, which is in the wax database. Which of the following allow you to do that? Check all that apply.

Question 10
You are working in the default database and want to list all the data in the crayons table, which is in the wax database. Which of the following allow you to do that? Check all that apply.

1 point

  • Change the current database to wax and run SELECT * FROM crayons;
  • Run SELECT * FROM crayons;
  • Change the current database to crayons and run SELECT * FROM wax;
  • Run SELECT * FROM wax.crayons;
  • Run SELECT crayons FROM wax;
  • Run SELECT crayons.* FROM wax;

Similar Posts