猿问

sql insert into从两张表的部分字段插入到第三张表

我想把两张表的其中几个字段插入到第三张表,怎么办?
如:table1,table2,table3三张表,table1中的a,b字段跟table2中的c,d字段并成一条记录插入到table3表怎么写?请高手指教

蓝山帝景
浏览 1171回答 3
3回答

GCT1015

insert into table3(a,b,c,d)select table1.a,table1.b,table2.c,table2.dfrom table1,table2where table1.key = table2.key
随时随地看视频慕课网APP

相关分类

SQL Server
我要回答