Which operator is equivalent to the ‘or’ operator?
Answer options
A
IN
B
AND
C
BETWEEN
D
LIKE
Correct answer: IN
Explanation
Quick AnswerThe correct answer is IN because it directly addresses the core logic of Database Management.
The IN operator is equivalent to multiple OR conditions: col IN (a, b) = col = a OR col = b.