It does not work with 2 WHERE. Instead use AND and OR like this:
SELECT * FROM mytable WHERE row=1 AND row2=2 // Will return all rows from mytable where row=1 and row2=2
SELECT * FROM mytable WHERE row=1 OR row=2 // Will return all rows from mytable where row is either 1 or 2
But you should look at like as well, it should be used as below:
SELECT * FROM mytable WHERE row LIKE '%my_seach_string%' // Will return all rows from mytable where the search string is somewhere in row field