sql insert into从两张表的部分字段插入到第三张表
我想把两张表的其中几个字段插入到第三张表,怎么办?如:table1,table2,table3三张表,table1中的a,b字段跟table2中的c,d字段并成一条记录插...
我想把两张表的其中几个字段插入到第三张表,怎么办?
如:table1,table2,table3三张表,table1中的a,b字段跟table2中的c,d字段并成一条记录插入到table3表怎么写?请高手指教 展开
如:table1,table2,table3三张表,table1中的a,b字段跟table2中的c,d字段并成一条记录插入到table3表怎么写?请高手指教 展开
2个回答
展开全部
insert into table3(column1, columm2, column3, column4)
select a, b, c, d
from table1, table2
where ...
一个SELECT结果的集合,是可以直接插入到另一个表中的。insert into table... select ... from ... where...,只要select返回的字段集合顺序和要插入的对应就好。还有,可以select 常量。。。这样每一行都会插入一个常量。
select a, b, c, d
from table1, table2
where ...
一个SELECT结果的集合,是可以直接插入到另一个表中的。insert into table... select ... from ... where...,只要select返回的字段集合顺序和要插入的对应就好。还有,可以select 常量。。。这样每一行都会插入一个常量。
2011-04-09
展开全部
insert into table3(a,b,c,d)
select table1.a,table1.b,table2.c,table2.d
from table1,table2
where table1.key = table2.key
select table1.a,table1.b,table2.c,table2.d
from table1,table2
where table1.key = table2.key
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询