IN & BETWEEN Operators1 / 10
IN lets you select data where an attribute matches one of several values from a specified list of values. Try:
SELECT * FROM actors WHERE primary_genre IN ('Slapstick', 'Romantic Comedy');Ctrl+Enter to submit