A

Admin • 833K Points
Coach

Q. What will be the output of the following MySQL command?
SELECT *
FROM employee
WHERE (title=’HEAD TELLER’) OR (start_date=2013-01-24);

  • (A) All columns and rows belong to table employee
  • (B) All columns but only those rows which contain 'HEAD TELLER' as a "title" or 2013-01-24 as a "start_date"
  • (C) All rows belong to table employee
  • (D) None of the mentioned
  • Correct Answer - Option(B)
  • Views: 13
  • Filed under category MySQL
  • Hashtags:

Explanation by: Admin

This question is asking you about a specific MySQL command. This command is used to select data from a table called "employee". Let's break down the command:

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.