A

Admin • 802.91K Points
Coach

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’
  • Correct Answer - Option(D)
  • Views: 6
  • Filed under category SQL Server
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.