You are not logged in.
- Topics: Active | Unanswered
Pages:: 1
#1 2015-09-18 06:13:35
SQL Temperature:
http://interviewquestionsanswers.org/quiz/Database http://interviewquestionsanswers.org/qu … L-Database
Question:
Find the temperature in increasing order of all cities:
Option A):
SELECT city FROM weather ORDER BY temperature;
Option B):
SELECT city, temperature FROM weather ORDER BY temperature;
Option C):
SELECT city, temperature FROM weather;
Correct Answer is Option B):
SELECT city, temperature FROM weather ORDER BY temperature;
Failure is the first step towards seccess.
Offline
2015-09-18 06:13:35
- Advertisement
- Ads By Google
Re: SQL Temperature:
Pages:: 1