πŸ“Š MySQL
Q. What will be the order of sorting in the following MySQL statement?
SELECT emp_id, emp_name
FROM person
ORDER BY emp_id, emp_name;
  • (A) Sorting {emp_id, emp_name}
  • (B) TEMPO
  • (C) Sorting (emp_id} but not emp_name
  • (D) None of the mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (A) Sorting {emp_id, emp_name}

Explanation: This question asks about how data will be sorted in a MySQL query. The ORDER BY clause tells MySQL to sort the results. Let's break it down:

Explanation by: Admin
This question asks about how data will be sorted in a MySQL query. The ORDER BY clause tells MySQL to sort the results. Let's break it down:

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
79
Total Visits
πŸ“½οΈ
1 y ago
Published
πŸŽ–οΈ
Admin
Publisher
πŸ“ˆ
90%
Success Rate