How To Use Regular Expression in Pattern Match Conditions

Q

How To Use Regular Expression in Pattern Match Conditions? - MySQL FAQs - Introduction to SQL Basics

✍: FYIcenter.com

A

If you have a pattern that is too complex for LIKE to handle, you can use the regular expression pattern condition: REGEXP. The following tutorial exercise provides you some good examples:

SELECT 'FYICenter.com' REGEXP '.*fyi.*' FROM DUAL;
   1

SELECT 'FYICenter.com' REGEXP '.*com$' FROM DUAL;
   1

SELECT 'FYICenter.com' REGEXP '^F.*' FROM DUAL; 
   1

2007-05-11, 4933👍, 0💬