sql - How to do a FULL OUTER JOIN in MySQL? -
i want full outer join in mysql. possible? full outer join supported mysql?
you don't have full joins on mysql, can sure emulate them.
for code sample transcribed this question have:
with 2 tables t1, t2:
(select * t1 left join t2 on t1.id = t2.id) union (select * t1 right join t2 on t1.id = t2.id t1.id null)
Comments
Post a Comment