oracle 数据库,能不能将查询的结果创建成新表。

这个是可以的。
sql:create table tablename1 as select t2. * from tablename2 t2 where t2.filename =‘张三’。
解释:就是从tablename2 读取出来的结果集作为tablename1 的数据。之后可以通过 “ select  * from  tablename1” 进行结果查看。

Oracle中把一个查询结果插入到一张表中

二、Oracle数据库中支持把查询结果导入到另外一张表中。 

例如:有两个表A和B 

1)如果两个表的表结构是否相同,但要插入的字段类型相同: 

(1)把A表的全部字段数据插入到B表中: 
insert into B select * from A; 

(2)把A表中某些字段的数据插入B表中: 
insert into B(字段名)(select 字段名 from A) 

2)果不在同一个schema下请在表名前加上schema,例如有schema a和b: 

insert into b.B select * from a.A 

 
原文地址:https://www.cnblogs.com/daduryi/p/6825408.html