這個是可以的。
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