Q:

Find the names of these cities with temperature and condition whose condition is neither sunny nor cloudy

belongs to collection: DBMS - SQL MCQ

0

Find the names of these cities with temperature and condition whose condition is neither sunny nor cloudy


  1. SELECT city, temperature, condition FROM weather WHERE condition NOT IN (\'sunny\', \'cloudy\');
  2. SELECT city, temperature, condition FROM weather WHERE condition NOT BETWEEN (\'sunny\', \'cloudy\');
  3. SELECT city, temperature, condition FROM weather WHERE condition IN (\'sunny\', \'cloudy\');
  4. SELECT city, temperature, condition FROM weather WHERE condition BETWEEN (\'sunny\', \'cloudy\');

All Answers

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

 (a).SELECT city, temperature, condition FROM weather WHERE condition NOT IN ('sunny', 'cloudy');

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
Find the name of those cities with temperature and... >>
<< What is the meaning of LIKE \'%0%0%\'...