Oracle查询数据插入到一个表中

oracle:查询数据插入到一个表中(存在或不存在的表都可以)

参考地址:https://zhidao.baidu.com/question/2115968730474671987.html

select * into 新表名 from 要查询的表名

表已经存在:

insert into 表名 (列名1.。。 列名n) select 列名1.。。。列名n from 表 where 条件
表不存在.:
oracle:
create table 新表明 as select 列名1.。。。列名n from 表 where 条件
sqlserver:
select 列名1.。。。列名n
into 新表名
from 表 where 条件

你可能感兴趣的:(数据库)