日期:2014-05-16 浏览次数:20630 次
?
今天处理几十万的数据运算,导入.
注意点:
1.注意基础表中,重复的数据.
2.确定索引已经建立.
如何清洗数据呢?
比如 nick重复.
create table temp_xx as select * from xx group by nick;
drop table xx;
crate table xx as select * from temp_xx;