| [ Web Proxy ] |
| Viewing: https://riptutorial.com/sql/example/9748/regexp | [Back] [Original] |
[logo rip]
Checks if a string matches a regular expression (defined by another string).
SELECT 'bedded' REGEXP '[a-f]' -- returns True
SELECT 'beam' REGEXP '[a-f]' -- returns False
| Web Proxy Viewer | New URL | Original Page |