How do you OR two LIKE statements?

Solution 1:

SELECT col FROM db.tbl WHERE (col LIKE 'str1' OR col LIKE 'str2') AND col2 = num

Solution 2:

I believe you need WHERE ((page LIKE 'str1') OR (page LIKE 'str2'))