Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL: Union of a Left Join with a Right Join

Tags:

sql

mysql

Say we have the following tables t1 and t2:

t1:
id | column_1
-------------
 1 |   1
 2 |   2

t2:
id | column_2
-------------
 2 |   2
 3 |   3

and we want to find the following result:

id | column_1 | column_2
------------------------
 1 |  1       | 
 2 |  2       | 2
 3 |          | 3

This basically is the union of a right join with a left join. The following code works but feels clumsy:

(
    SELECT t1.id, t1.column_1, t2.column_2 
    FROM t1 
    LEFT JOIN t2 ON t1.id = t2.id
)
UNION
(
    SELECT t2.id, t1.column_1, t2.column_2 
    FROM t1 
    RIGHT JOIN t2 ON t1.id = t2.id
)

Is there a better way to achieve this?

like image 455
Pierre Spring Avatar asked Dec 23 '22 09:12

Pierre Spring


2 Answers

select a.id, t1.column_1, t2.column_2
from (
    select id from t1
    union 
    select id from t2
) a
left outer join t1 on a.id = t1.id
left outer join t2 on a.id = t2.id
like image 74
D'Arcy Rittich Avatar answered Jan 02 '23 06:01

D'Arcy Rittich


Try this one:

SELECT t1.id, t1.column_1, t2.column_2 
FROM t1 
FULL OUTER JOIN t2 ON (t1.id = t2.id)

Edit: Doesn't work, MySQL does not know FULL OUTER JOIN. Have a look here: http://www.xaprb.com/blog/2006/05/26/how-to-write-full-outer-join-in-mysql/

like image 24
Blama Avatar answered Jan 02 '23 06:01

Blama