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