oracle数据库,现在有一个表有上亿条数据,建的是分区表,我想快速的删除一个字段或者把这个字段置空
发布网友
发布时间:2022-04-08 10:20
我来回答
共2个回答
热心网友
时间:2022-04-08 11:50
可以这样
create table tablename2 as select * from tablename;把你不要的那个字段去掉
然后rename
或者你这个表一直在更新数据,暂时不查询,可以
create table tablename2 as select * from tablename where 1=2;
先把表结构拷过来,然后rename table;
最后再导数据
热心网友
时间:2022-04-08 13:08
create table xxxx as select xxxx from xxxx.