Skip to content

Instantly share code, notes, and snippets.

@yoavmatchulsky
Created May 26, 2016 13:33
Show Gist options
  • Save yoavmatchulsky/3ad243b3032e69347c687105bda4e651 to your computer and use it in GitHub Desktop.
Save yoavmatchulsky/3ad243b3032e69347c687105bda4e651 to your computer and use it in GitHub Desktop.
CREATE VIEW emails AS (
SELECT email FROM users
UNION
SELECT other_email AS email FROM more_users
UNION
select other_other_email AS email FROM even_more_users
);
SELECT 1 FROM emails WHERE email = 'email@email.com';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment