Introduction to SQL
Find the temperature in increasing order of all cities

SELECT city, temperature FROM weather ORDER BY temperature;
SELECT city FROM weather ORDER BY temperature;
SELECT city, temperature FROM weather;
SELECT city, temperature FROM weather ORDER BY city;

ANSWER DOWNLOAD EXAMIANS APP