Problem Statement
Which query returns rows where city is either 'Delhi' or 'Mumbai'?
Explanation
IN tests membership in a list. It is clear for short, explicit sets.
BETWEEN is for ranges, and LIKE is for pattern matching. Use the right tool for the comparison you need.
Code Solution
SolutionRead Only
SELECT * FROM stores WHERE city IN ('Delhi','Mumbai');