-
What will be the order of sorting in the given query?
SELECT emp_id, emp_name
FROM Employee
ORDER BY emp_id, emp_name;
-
- Sorting {emp_name, emp_id}
- Sorting (emp_id} but not emp_name
- Sorting {emp_id, emp_name}
- All of above
- None of these
Correct Option: C
In the query, first “emp_id” will be sorted then emp_name with respect to emp_id.