๐Ÿ“Š Database Management System (DBMS)
Q. Find all the tuples having a temperature greater than ‘Paris’.
  • (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
๐Ÿ’ฌ Discuss
โœ… Correct Answer: (A) SELECT * FROM weather WHERE temperature > (SELECT temperature FROM weather WHERE city = ‘Paris’

You must be Logged in to update hint/solution

๐Ÿ’ฌ Discussion

๐Ÿ“Š Question Analytics

๐Ÿ‘๏ธ
482
Total Visits
๐Ÿ“ฝ๏ธ
3 y ago
Published
๐ŸŽ–๏ธ
Mr. Dubey
Publisher
๐Ÿ“ˆ
91%
Success Rate