You are not logged in.

#1 2015-09-18 06:19:07

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

SQL Quiz Question:

Database Quizzes SQL Database

Question:
Find all the cities with temperature, condition and humidity whose humidity is in the range of 63 to 79

Option A):
SELECT * FROM weather WHERE humidity NOT IN (63 AND 79)
Option B):
SELECT * FROM weather WHERE humidity IN (63 to 79)
Option C):
SELECT * FROM weather WHERE humidity BETWEEN 63 AND 79

Correct Answer is Option C):
SELECT * FROM weather WHERE humidity BETWEEN 63 AND 79


Failure is the first step towards seccess.

2015-09-18 06:19:07

Advertisement
Ads By Google

Re: SQL Quiz Question:



Board footer