REGEXP is a pattern match in which matches pattern anywhere in the search value.
MySQL Interview Questions and Answers
REGEXP is a pattern match in which matches pattern anywhere in the search value.
LIKE and REGEXP operators are used to express with ^ and %.
Example:
SELECT * FROM table WHERE column REGEXP “^x”;
SELECT * FROM table WHERE column LIKE “%x”;