Skip to content

Instantly share code, notes, and snippets.

@garethflowers
Last active May 3, 2021 21:41
Show Gist options
  • Select an option

  • Save garethflowers/5448059 to your computer and use it in GitHub Desktop.

Select an option

Save garethflowers/5448059 to your computer and use it in GitHub Desktop.
Validates if a value is an email string.
CREATE OR REPLACE FUNCTION is_email(
anyelement
)
RETURNS boolean
LANGUAGE sql
IMMUTABLE
STRICT
AS $$
SELECT $1::TEXT ~ '^\S+@\S+$';
$$;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment