You are not logged in.

#1 2015-09-18 06:22:01

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

SQL Entries:

Database Quizzes SQL Database

Question:
Find the name of cities with all entries whose temperature is in the range of 71 and 89:

Option A):
SELECT * FROM weather WHERE temperature BETWEEN 71 AND 89;
Option B):
SELECT * FROM weather WHERE temperature NOT IN (71 and 89);
Option C):
SELECT * FROM weather WHERE temperature NOT BETWEEN 71 to 89;

Correct Answer is Option A):
SELECT * FROM weather WHERE temperature BETWEEN 71 AND 89;


Failure is the first step towards seccess.

2015-09-18 06:22:01

Advertisement
Ads By Google

Re: SQL Entries:



\n

Board footer