You are not logged in.

#1 2015-09-18 06:12:31

hasnain
Administrator
From: Chichawatni
Registered: 2014-10-13
Posts: 8,355
Website

SQL Quiz Question.

Database Quizzes SQL Database

Question:
Find all the cities whose humidity is 89:

Option A):
SELECT city FROM weather WHERE humidity = 89;
Option B):
SELECT city WHERE humidity = 89;
Option C):
SELECT humidity = 89 FROM weather;

Correct Answer is Option A):
SELECT city FROM weather WHERE humidity = 89;


Failure is the first step towards seccess.

2015-09-18 06:12:31

Advertisement
Ads By Google

Re: SQL Quiz Question.



Board footer