CBSE Class 12 Computer Science
Question 67 of 78
Simple Queries in SQL — Question 1
Back to all questionsFalse
Reason — In SQL, the condition in a WHERE clause can refer to multiple values. We can use logical operators such as AND, OR, and NOT to combine multiple conditions. For example :
SELECT * FROM pet WHERE (species = 'cat' OR species = 'dog') AND sex = 'm';