MCQOPTIONS
Saved Bookmarks
| 1. |
What is the significance of ORDER BY emp_id DESC in the given query?SELECT id, First_name, Last_nameFROM StudentORDER BY id DESC; |
| A. | Data of id will be sorted in ascending order |
| B. | Data of id will be sorted in either ascending or descending order |
| C. | Data of id will be sorted in descending order |
| D. | All of above |
| E. | None of these |
| Answer» D. All of above | |