oracle建立一張與其他表相同表結構的空表
--只是建立ta表,與emp表結構相同,並不新增資料
--這種構造與現存表相同結構的表,是不會將comment帶過來的
create table t1 as select * from scott.emp where 1=0;
--建立tb表,結構與dept結構相同,將dept表中的資料匯入其中
--這種構造與現存表相同結構的表,是不會將comment帶過來的:
create table t2 as select * from scott.dept where 1=1;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27500440/viewspace-1136915/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MYSQL建立多張表,相同表結構,不同表名MySql
- [MySQLFAQ]系列–如何快速建立相同結構的表MySql
- 獲取某張表的表結構
- 用WPS表格快速建立相同結構的工作表
- oracle建立表空間Oracle
- 把表遷移到其他的表空間
- Oracle的邏輯結構(表空間、段、區間、塊)——表空間Oracle
- 將表遷移至其他表空間
- 根據結構基本相同的A表的值更新B表
- 【TABLESPACE】Oracle 表空間結構說明Oracle
- Oracle基礎結構之表空間Oracle
- 表管理之三:表與表結構的管理
- Oracle OCP(47):表空間的建立Oracle
- oracle一個建立使用者、建立表空間、授權、建表的完整過程Oracle
- ORACLE表空間的建立修改刪除Oracle
- Oracle表結構轉換SqlSERVER表結構 指令碼OracleSQLServer指令碼
- oracle的表空間、分割槽表、以及索引的總結Oracle索引
- 【Golang】基於beego/orm實現相同表結構不同表名的分表方法實現GolangORM
- Oracle表空間建立引數解析Oracle
- Linux下建立Oracle表空間LinuxOracle
- oracle 建立表空間完整版Oracle
- oracle之 手動建立 emp 表 與 dept 表Oracle
- partition 分割槽表移動到其他表空間
- 批量移動分割槽表到其他表空間
- 使用 NineData GUI 建立與修改 ClickHouse 表結構GUI
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- oracle為資料庫每張表建立序列Oracle資料庫
- Oracle表移動表空間Oracle
- oracle 表移動表空間Oracle
- MySQL複製表結構和內容到另一張表中的SQL語句MySql
- 建立加密表空間加密
- 將ORACLE資料庫審計相關的表移動到其他表空間Oracle資料庫
- oracle expdp、impdp匯入從原表空間更換到其他表空間 ----匯入到另個表空間測試Oracle
- ORACLE EBS中掛一張報表Oracle
- oracle 建立表空間和使用者Oracle
- Oracle 表空間 建立引數 說明Oracle
- Oracle建立表空間和使用者Oracle
- 一個根據已有表結構來建立新表的儲存過程儲存過程