The LIKE operator is used in a WHERE clause to search for a specified pattern in a column.
There are two wildcards often used in conjunction with the LIKE operator:
%) represents zero, one, or multiple characters_) represents one, single characterSELECT column1, column2, ...
FROM table_name
WHERE columnN LIKE pattern; Edit the code below and click Run to see the result live.