Created
April 15, 2020 17:40
-
-
Save wwahammy/b1c24058ff83fd204ed560f668cbddd3 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
((SELECT * FROM payments LEFT OUTER JOIN supporters ON supporters.id = payments.supporter_id) | |
EXCEPT ALL (SELECT * FROM payments INNER JOIN supporters ON supporters.id = payments.supporter_id)) | |
UNION ALL | |
((SELECT * FROM payments INNER JOIN supporters ON supporters.id = payments.supporter_id) | |
EXCEPT ALL (SELECT * FROM payments LEFT OUTER JOIN supporters ON supporters.id = payments.supporter_id)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment