CBSE Class 12 Informatics Practices
Question 73 of 79
MySQL SQL Revision Tour — 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';