如何用SQL语句将一张表里查询出来的数据插入到另外一张表中?

时间:2021-06-28 00:51:04
如何用SQL语句将一张表里查询出来的数据插入到另外一张表中?语句应该怎么写啊,帮忙谢谢

6 个解决方案

#1


insert into tablename  select *from

#2


表结构要相同

#3


select into a from b
insert into a select * from b

#4


可以如楼上的用sql实现,也可以用sql server提供的数据导入导出工具,good luck!

#5


select into a from b
insert into a select * from b

#6


mark

#1


insert into tablename  select *from

#2


表结构要相同

#3


select into a from b
insert into a select * from b

#4


可以如楼上的用sql实现,也可以用sql server提供的数据导入导出工具,good luck!

#5


select into a from b
insert into a select * from b

#6


mark