SELECT * FROM my_table WHERE (colA LIKE '%hello%' OR colB LIKE '%world%');
SELECT * FROM Customers WHERE last_name LIKE 'R%t' OR last_name LIKE '%e';