
Tyler K. answered 03/22/19
Senior Database Consultant specializing in Analysis and Modelling
Hi
You have to use a union with left join/right join queries as mysql does not support full outer joins.
so e.g.
SELECT *
FROM Table_A A
LEFT JOIN Table_B B ON A.id = B.id
UNION
SELECT *
FROM Table_A A
RIGHT JOIN Table_B B ON A.id = B.id
Union removes duplicates, Union All does not
Good luck
- Tyler K