一个学生信息表,没有主键
表名
taun_yuan_student
内容
student_id student_name student_class student_crad student_book
以student_id 为准,删除重复数据,只保留一条信息
我看了很多的mysql语句,很多都不能实现,而且表不能设置主键,不要问为什么,问就是设置了会出bug
希望有人帮忙写一条语句解答
一个学生信息表,没有主键
表名
taun_yuan_student
内容
student_id student_name student_class student_crad student_book
以student_id 为准,删除重复数据,只保留一条信息
我看了很多的mysql语句,很多都不能实现,而且表不能设置主键,不要问为什么,问就是设置了会出bug
希望有人帮忙写一条语句解答
换表即可,思路如下新建表并添加这个表里的数据(不重复),删除原有表,将新的表重命名为原来的表名,执行sql命令如下
create table table1(student_id,student_name,student_class,student_crad,student_book)
as select DISTINCT `student_id`,student_name,student_class,student_crad,student_book from taun_yuan_student;
drop table taun_yuan_student;
alter table table1 rename to taun_yuan_student;