怎么用一条语句将从A表查出来的数据直接插入到B表里

时间:2021-10-10 22:29:08
怎么用一条语句将从A表查出来的数据直接插入到B表里,类是于select col1 into varible from table 的方式

5 个解决方案

#1


insert into b select * from a
表b已经存在
create table b as select * from a
表b原来不存在

#2


insert into b (field1, field2, ...) 
select fld1, fld2, ... from a where ...

#3


呵呵,就是這樣的

#4


对!帮忙顶一下!

#5


多谢!多谢!

#1


insert into b select * from a
表b已经存在
create table b as select * from a
表b原来不存在

#2


insert into b (field1, field2, ...) 
select fld1, fld2, ... from a where ...

#3


呵呵,就是這樣的

#4


对!帮忙顶一下!

#5


多谢!多谢!