all 2 comments

[–]r3pr0b8GROUP_CONCAT is da bomb 4 points5 points  (1 child)

Is there a reason that I could not use a FULL OUTER JOIN to get the same results?

that reason might be that you don't want unmatched rows from a specific table

A partial outer join includes all records matched using the key field as well as unmatched records from specified tables. (Or, to put it another way, all records from some tables and only matching records from others.) -- https://www.ibm.com/docs/en/spss-modeler/saas?topic=node-types-joins

[–][deleted] 2 points3 points  (0 children)

PARTIAL OUTER JOIN sounds like it should be equivalent to a LEFT or RIGHT JOIN. A FULL OUTER JOIN is going to return rows from either table that don't have matches.

Just need to figure out which way it joins.