Sail E0 Webinar
Question
Find all the tuples having temperature greater than 'Paris'.
Options:
A .  SELECT * FROM weather WHERE temperature > (SELECT temperature FROM weather WHERE city = 'Paris')
B .  SELECT * FROM weather WHERE temperature > (SELECT * FROM weather WHERE city = 'Paris')
C .  SELECT * FROM weather WHERE temperature > (SELECT city FROM weather WHERE city = 'Paris')
D .  SELECT * FROM weather WHERE temperature > 'Paris' temperature
Answer: Option A

Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers