

MCQOPTIONS
Saved Bookmarks
1. |
FIND_THE_TEMPERATURE_IN_INCREASING_ORDER_OF_ALL_CITIES?$ |
A. | SELECT city FROM weather ORDER BY temperature; |
B. | SELECT city, temperature FROM weather; |
C. | SELECT city, temperature FROM weather ORDER BY temperature; |
D. | SELECT city, temperature FROM weather ORDER BY city; |
Answer» E. | |