-
What is the significance of “ORDER BY emp_id DESC” in the given query?
SELECT id, First_name, Last_name
FROM Student
ORDER BY id DESC;
-
- Data of id will be sorted in ascending order
- Data of id will be sorted in either ascending or descending order
- Data of id will be sorted in descending order
- All of above
- None of these
Correct Option: C
Keyword “DESC” will sort the data in descending order.