MCQOPTIONS
Saved Bookmarks
| 1. |
If emp_id contain the following set {9, 7, 6, 4, 3, 1, 2}, what will be the output on execution of the given query?SELECT emp_idFROM EmployeeORDER BY emp_id; |
| A. | {2, 1, 4, 3, 7, 9, 6} |
| B. | {9, 7, 6, 4, 3, 1, 2} |
| C. | {1, 2, , 3, 4, 6, 7, 9} |
| D. | All of above |
| E. | None of these |
| Answer» D. All of above | |