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