Skip to content

Instantly share code, notes, and snippets.

@ismits
Last active August 22, 2017 15:47
Show Gist options
  • Save ismits/e656672d4cb5fd3cfcbc403b44db6d57 to your computer and use it in GitHub Desktop.
Save ismits/e656672d4cb5fd3cfcbc403b44db6d57 to your computer and use it in GitHub Desktop.
Oracle select with regex
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