我需要将两个不同表中的两列复制到新表中:
t1: col1 col2 t2: col3 col4
a1 b1 c1 d1
a2 b2 c2 d2
c3 d3
我需要得到这个:
t3: col1 col4
a1 d1
a2 d2
null d3
我使用查询:
INSERT INTO t3 (col1,col4) SELECT t1.col1, t2.col4 FROM t1,t2
但我得到了这个:
t3: col1 col4
a1 d1
a2 d1
a1 d2
a2 d2
a1 d3
a2 d3
任何人都可以帮忙吗?我应该使用其他查询吗?天呐!