Skip to content

Instantly share code, notes, and snippets.

@savchukoleksii
Created January 11, 2019 10:56
Show Gist options
  • Save savchukoleksii/f906a00a9241655f9899d7c9d9e3b6cf to your computer and use it in GitHub Desktop.
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, ...
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