Q:

Find all the cities whose humidity is 89

belongs to collection: DBMS - SQL MCQ

0

Find all the cities whose humidity is 89


  1. SELECT city WHERE humidity = 89;
  2. SELECT city FROM weather WHERE humidity = 89;
  3. SELECT humidity = 89 FROM weather;
  4. SELECT city FROM weather;

All Answers

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

(b).SELECT city FROM weather WHERE humidity = 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
Find the temperature in increasing order of all ci... >>
<< Which command undo all the updates performed by th...