Hello @sarahtlv,
Welcome to the forums!
Between the two choices presented above, the first one should be used.
An alternative would be to use the IN operator:
SELECT *
FROM movies
WHERE genre IN ('action', 'comedy', 'romance')
You can read more about it here: IN Operator