Scalar. Determines whether or not a string contains a match for a POSIX regular expression pattern.
The following example uses the REGEXP_SEARCH function to determine if the value in the StockName column has the string "Corp" at the end:
INSERT INTO OutStream SELECT REGEXP_SEARCH(Trades.StockName, "Corp$") FROM Trades;