Q:

Find all the tuples having temperature greater than \'Paris\'

belongs to collection: DBMS - SQL MCQ

0

Find all the tuples having temperature greater than 'Paris'.


  1. SELECT * FROM weather WHERE temperature > (SELECT temperature FROM weather WHERE city = \'Paris\')
  2. SELECT * FROM weather WHERE temperature > (SELECT * FROM weather WHERE city = \'Paris\')
  3. SELECT * FROM weather WHERE temperature > (SELECT city FROM weather WHERE city = \'Paris\')
  4. SELECT * FROM weather WHERE temperature > \'Paris\' temperature

All Answers

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

 (a).SELECT * FROM weather WHERE temperature > (SELECT temperature FROM weather WHERE city = 'Paris')

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 all the cities with temperature, condition an... >>
<< Find the name of those cities with temperature and...