我知道这句话:
create table xyz_new as select * from xyz;
它复制了结构和数据,但如果我只想要结构呢?
我知道这句话:
create table xyz_new as select * from xyz;
它复制了结构和数据,但如果我只想要结构呢?
当前回答
没有表数据的复制
create table <target_table> as select * from <source_table> where 1=2;
复制表数据
create table <target_table> as select * from <source_table>;
其他回答
WHERE 1 = 0或类似的假条件可以工作,但我不喜欢它们的样子。Oracle 12c+ IMHO的代码稍微干净一些
创建表栏AS SELECT * 从foo 只获取前0行;
同样的限制适用:只有列定义及其可空性被复制到新表中。
你也可以做
create table abc_new as select * from abc;
然后截断表abc_new。希望这能满足你的要求。
Create table target_table
As
Select *
from source_table
where 1=2;
Source_table是你要复制其结构的表。
没有表数据的复制
create table <target_table> as select * from <source_table> where 1=2;
复制表数据
create table <target_table> as select * from <source_table>;
如果需要为EXCHANGE PARTITION创建一个表(具有空结构),最好使用“..”为了交换……”条款。不过,它只能从Oracle版本12.2开始使用。
CREATE TABLE t1_temp FOR EXCHANGE WITH TABLE t1;
如果正常的CTAS操作没有精确地复制表结构,则在“交换分区”期间无缝地处理“ORA-14097”。我看到Oracle从原始表中遗漏了一些“DEFAULT”列和“HIDDEN”列的定义。
ORA-14097: ALTER TABLE EXCHANGE中的列类型或大小不匹配 分区
进一步阅读请参阅此…