这个叫做复制表
pl-sql语句
create table 新表名 as select * from 被复制的表名 where 1=2 ;
上面的语句就是创建一个新标按你查出来的表的格式创建并复制内容
只要where 后面的条件返回是false 查出来的记录就为空,
所以这样就达到了复制表结构而不复制内容
create table new_table as select * from old_table where 1=0 ;
where后面的条件可以随便加,就要结果非真即可,也就让返回的记录数为0行。
create table new_table as select * from old_tabble where 1=2;
加条件让它不返回记录就是的了
摆渡
create table new_table as
select * from old_tabble
where rownum<1;