组合来自多个表的数据

azpvetkf  于 2021-07-27  发布在  Java
关注(0)|答案(1)|浏览(280)

我有两张table

col1 col2 col3 col4
1     2     3    4
101   201   301  401

还有一张table-tableB

col1 col2 col3 col4
1     2     3    4

结果表C或结果应为
结果

col1 col2 col3 col4 col5 col6 col7 col8

1     2    3    4    1    2    3     4
101   201  301  401  null null null  null

基本上,我们希望在任何可用的地方保存表中的公共行。我正在使用mysql

fnvucqvd

fnvucqvd1#

select * from TableA a left join TableB b
on a.col1 = b.col1 and a.col2 = b.col2 and a.col3 = b.col3 and a.col4 = b.col4

相关问题