FULL OUTER JOIN with WHERE
- produce the set of records unique to tableA and tableB, by performing a full outer join and then excluding the records we don't want from both sides via a where clause — the other specific fields are filled in with null statements
SELECT *
FROM table1
FULL OUTER JOIN table2
ON table1.name IS null
Or table2.name IS null
We use cookies to understand our websites traffic and offer our website visitors personalized experience. To find out more, click ‘More Information’. In addition, please, read our
Privacy policy.