shibazi

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

1、使用distinct查询所有不重复的记录

2、创建数据表相同结构的临时表,将第一步的数据复制进去

    create temporary table if not exists student_temp as (select distinct(name), sex from student);

3、truncate table student;

4、insert into student(id,name,sex) select null,name,sex from student_temp;

 

 

posted on 2014-06-11 09:10  一生学习,何来毕业  阅读(447)  评论(0编辑  收藏  举报