create table t1 as select distinct id from t_src;create table t1 as select id from t_src;
create index i_t1 on t1(id);
delete from t1 a where  rowid > (select min(rowid) from t1 where id = a.id);create table t1 as select id from t_src;
delete from t1 a where  rowid > (select min(rowid) from t1 where id = a.id);
create index i_t1 on t1(id);以上三种方法对于超大型数据表,那种速度会最快呢?特别是2、3种,到底是先创建索引好还是后创建呢?