InterviewSolution
Saved Bookmarks
| 1. |
Find the name of those cities with temperature and condition whose condition is either sunny or cloudy but temperature must be greater than 70.(a) SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ AND condition = ‘cloudy’ OR temperature > 70(b) SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ OR condition = ‘cloudy’ OR temperature > 70(c) SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ OR condition = ‘cloudy’ AND temperature > 70(d) SELECT city, temperature, condition FROM weather WHERE condition = ‘sunny’ AND condition = ‘cloudy’ AND temperature > 70The question was asked in an online quiz.Origin of the question is Basic SQL topic in portion Laying the Foundation of SQL Server |
|
Answer» CORRECT answer is (c) SELECT city, temperature, CONDITION FROM WEATHER WHERE condition = ‘sunny’ OR condition = ‘cloudy’ AND temperature > 70 The EXPLANATION: The AND operator displays a record if both the first condition AND the second condition are true. The OR operator displays a record if either the first condition OR the second condition is true. |
|