今天云测速要聊的东西很简单,就是删除mysql数据库表中的重复记录。
我们假设表的名字为OurTable
select distinct * from into 临时表 from OurTable
delete from OurTable insert into OurTable
slect * from 临时表
drop table 临时表
今天云测速要聊的东西很简单,就是删除mysql数据库表中的重复记录。
我们假设表的名字为OurTable
select distinct * from into 临时表 from OurTable
delete from OurTable insert into OurTable
slect * from 临时表
drop table 临时表