Q:

Find the temperature in increasing order of all cities

belongs to collection: DBMS - SQL MCQ

0

Find the temperature in increasing order of all cities


  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;

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 (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

total answers (1)

DBMS - SQL MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What is the meaning of LIKE \'%0%0%\'... >>
<< Find all the cities whose humidity is 89...