sql语句 怎么从一张表中查询数据插入到另一张表中
4个回答
展开全部
insert into 表A select a,b,c from 表B ;
其中查询字段abc需要与表A中的字段对应。如果不是全表,也可以:
insert into 表A (a,b,c) select a',b',c' from 表B ;
其中查询字段abc需要与表A中的字段对应。如果不是全表,也可以:
insert into 表A (a,b,c) select a',b',c' from 表B ;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
insert into table1(id,name) select id,name from table2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
insert into table1
select * from table2
--如果table1表不存在
select * into table1 from table2
select * from table2
--如果table1表不存在
select * into table1 from table2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询