For issues relating to the RLIKE synonym for the REGEXP MySQL operator.
RLIKE is a synonym for the REGEXP MySQL operator. It performs a pattern match of a string expression against a pattern. The pattern is supplied as an argument.
Sample:
SELECT 'Michael!' REGEXP '.*';