1.

What will be the order of sorting in the given query?
SELECT emp_id, emp_name
FROM Employee
ORDER BY emp_id, emp_name;

A. Sorting {emp_name, emp_id}
B. Sorting (emp_id} but not emp_name
C. Sorting {emp_id, emp_name}
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found

Related MCQs