If we want to find records with three specific age values, what does the bottom clause have to look like?

WHERE age IN (10, 20, 45);ORDER BY name;WHERE age BETWEEN 10 AND 45;WHERE age = 10, 20, 45;

Huzzah! The IN operator accepts multiple values, whereas the = operator can only be set to a single value.

Yikes! The IN operator accepts multiple values, whereas the = operator can only be set to a single value.