How do you OR two LIKE statements?
SELECT col FROM db.tbl WHERE (col LIKE 'str1' OR col LIKE 'str2') AND col2 = num
USE %
at the Start and End of the String. So that it will check the Sub-Strings as well
SELECT col FROM db.tbl WHERE (col LIKE '%str1%' OR col LIKE '%str2%') AND col2 = num
I believe you need WHERE ((page LIKE 'str1') OR (page LIKE 'str2'))