-
What is the significance of “ORDER BY” in the given query?
SELECT emp_id, fname, lname
FROM Employee
ORDER BY emp_id;
-
- Data of emp_id will be sorted in descending order
- Data of emp_id will be sorted in ascending order
- Data of emp_id will be sorted
- All of above
- None of these
Correct Option: C
Sorting in ascending or descending order depends on keyword “DESC” and “ASC”.