Discussion :: SQL Basics
- Find the name of all cities with their temperature, humidity and countries.
A.
SELECT city, temperature, humidity, country FROM location; |
B.
SELECT weather.city, temperature, humidity, country FROM weather, location; |
C.
SELECT weather.city, temperature, humidity, country FROM weather, location WHERE weather.city = location.city; |
D.
SELECT weather.city, temperature, humidity FROM weather SELECT country FROM location WHERE weather.city = location.city; |
Answer : Option C
Explanation :
Explanation Not Provided
Be The First To Comment