Home / CSE / SQL Basics :: Discussion

Discussion :: SQL Basics

  1. Find the temperature in increasing order of all cities

  2. 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;

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Explanation Not Provided


Be The First To Comment