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

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -