首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

Oracle 剔除大表数据

2013-03-21 
Oracle 删除大表数据??create table test_temp as select * from test t where t.add_data 2010081700

Oracle 删除大表数据

?

?create table test_temp as select * from test t where t.add_data >= '20100817000000';

?

?create table temp as select * from T1 where ......

drop table t1?

alter table temp rename t1;

热点排行