建立某 Table 的部分架構且要複製資料

摘要:建立某 Table 的部分架構且要複製資料

建立某 Table 的部分架構且要複製資料
create table <table_name> as
select ...
  from <source_table>
 where ...;

==============================================

Oracle 用 Select 方式 Insert Table 已建立的資料表

insert into Table_Name

select col1
     , col2
     , ...
  from Source_Table;

 

 

REF:

http://tomkuo139.blogspot.tw/2009/12/oracle-plsql-select-table.html