Created
December 6, 2021 17:14
-
-
Save AayushSameerShah/7bd32e844a68e06e890098d1e386fad6 to your computer and use it in GitHub Desktop.
The SQL statement to exclude the intersection of full outer join
This file contains hidden or 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 table_A | |
| FULL OUTER JOIN table_B | |
| ON table_A.col = table_B.col | |
| WHERE table_A.col IS null | |
| OR table_B.col IS null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Exact opposite of innter join!