我想把两张表的其中几个字段插入到第三张表,怎么办?如:table1,table2,table3三张表,table1中的a,b字段跟table2中的c,d字段并成一条记录插入到table3表怎么写?请高手指教
3 回答
GCT1015
TA贡献1827条经验 获得超4个赞
insert into table3(a,b,c,d)
select table1.a,table1.b,table2.c,table2.d
from table1,table2
where table1.key = table2.key
- 3 回答
- 0 关注
- 1170 浏览
添加回答
举报
0/150
提交
取消