Created
January 11, 2019 10:56
-
-
Save savchukoleksii/f906a00a9241655f9899d7c9d9e3b6cf to your computer and use it in GitHub Desktop.
https://i.stack.imgur.com/pUmRh.jpg Diferentes joins para sacar los registros iguales, diferentes, ...
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 tableA a | |
FULL OUTER JOIN tableB b | |
ON a.column = a.column | |
WHERE a.column IS NULL OR b.column IS NULL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment