MySQL: Union of a Left Join with a Right Join

前端 未结 3 390
不思量自难忘°
不思量自难忘° 2020-12-21 04:36

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
3条回答
  •  [愿得一人]
    2020-12-21 05:07

    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
    

提交回复
热议问题