Created
August 18, 2016 21:12
-
-
Save rikonor/834f05943834935a3339415447fcd24d to your computer and use it in GitHub Desktop.
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
WITH | |
OldEntry AS ( | |
SELECT domain_id FROM domains WHERE domain = 'google.com' | |
), | |
NewEntry AS ( | |
INSERT INTO domains (domain) | |
SELECT 'google.com' | |
WHERE NOT EXISTS ( | |
SELECT domain_id FROM OldEntry | |
) | |
RETURNING domain_id | |
) | |
SELECT domain_id FROM NewEntry | |
UNION ALL | |
SELECT domain_id FROM OldEntry; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment