CBSE Class 12 Informatics Practices
Question 10 of 90
Querying Using SQL — Question 3
Back to all questionsFirstly on emp_id and then on emp_name
Reason — The ORDER BY emp_id, emp_name clause sorts the result set firstly by the emp_id column. If there are rows with the same emp_id, those rows are further sorted by the emp_name column.