A

Admin • 802.91K Points
Coach

Q. If emp_id contain the following set {9, 7, 6, 4, 3, 1, 2}, what will be the output on execution of the following MySQL command?
SELECT emp_id
FROM person
ORDER BY emp_id ASC;

  • (A) {9, 7, 6, 4, 3, 1, 2}
  • (B) {1, 2, 3, 4, 6, 7, 9}
  • (C) {2, 1, 3, 4, 6, 7, 9}
  • (D) None of the mentioned
  • Correct Answer - Option(B)
  • Views: 7
  • Filed under category MySQL
  • Hashtags:

Explanation by: Admin
This question asks about how data is arranged in a database using MySQL. Let's break it down:

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.