Online Course Support

The customers table in the default database has columns cust_id, name, and country (all string types). Which of the following are valid SELECT statements? Check all that apply.

Question 3
The customers table in the default database has columns cust_id, name, and country (all string types). Which of the following are valid SELECT statements? Check all that apply.

1 point

  • SELECT customers FROM default;
  • SELECT customers;
  • SELECT name, cust_id FROM customers;
  • SELECT name;
  • SELECT ‘Brendon’;
  • SELECT Arfa;
  • SELECT * FROM customers;

Similar Posts