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