๐Ÿ“Š SQL Server
Q. Find all the tuples having a temperature greater than ‘Paris’.
  • (A) SELECT * FROM weather WHERE temperature > ‘Paris’ temperature
  • (B) SELECT * FROM weather WHERE temperature > (SELECT city FROM weather WHERE city = ‘Paris’)
  • (C) SELECT * FROM weather WHERE temperature > (SELECT * FROM weather WHERE city = ‘Paris’)
  • (D) SELECT * FROM weather WHERE temperature > (SELECT temperature FROM weather WHERE city = ‘Paris’
๐Ÿ’ฌ Discuss
โœ… Correct Answer: (D) SELECT * FROM weather WHERE temperature > (SELECT temperature FROM weather WHERE city = ‘Paris’

You must be Logged in to update hint/solution

๐Ÿ’ฌ Discussion


๐Ÿ“Š Question Analytics

๐Ÿ‘๏ธ
213
Total Visits
๐Ÿ“ฝ๏ธ
4 y ago
Published
๐ŸŽ–๏ธ
Ram Sharma
Publisher
๐Ÿ“ˆ
91%
Success Rate