Last active
August 22, 2017 15:47
-
-
Save ismits/e656672d4cb5fd3cfcbc403b44db6d57 to your computer and use it in GitHub Desktop.
Oracle select with regex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT first_name, last_name | |
FROM employees | |
WHERE REGEXP_LIKE (first_name, '^Ste(v|ph)en$'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment