Find the temperature in increasing order of all cities
- SELECT city FROM weather ORDER BY temperature;
- SELECT city, temperature FROM weather;
- SELECT city, temperature FROM weather ORDER BY temperature;
- SELECT city, temperature FROM weather ORDER BY city;
(c).SELECT city, temperature FROM weather ORDER BY temperature;
need an explanation for this answer? contact us directly to get an explanation for this answer