mysql大数据量导入笔记

今天处理几十万的数据运算,导入.

注意点:

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;

相关推荐