Q. SQL query to find the temperature in increasing order of all cities. (Solved)
1. SELECT city FROM weather ORDER BY temperature
2. SELECT city, temperature FROM weather
3. SELECT city, temperature FROM weather ORDER BY temperature
4. SELECT city, temperature FROM weather ORDER BY city
- d. SELECT city, temperature FROM weather ORDER BY city