Q:

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

belongs to collection: DBMS - SQL MCQ

0

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


  1. SELECT * FROM weather WHERE temperature NOT IN (71 to 89);
  2. SELECT * FROM weather WHERE temperature NOT IN (71 and 89);
  3. SELECT * FROM weather WHERE temperature NOT BETWEEN 71 to 89;
  4. SELECT * FROM weather WHERE temperature BETWEEN 71 AND 89;

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 (d).SELECT * FROM weather WHERE temperature BETWEEN 71 AND 89;

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

DBMS - SQL MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Which of the following query finds the names of th... >>
<< Find the name of all cities with their temperature...