sql删除重复行的存储过程怎么写我这边有很多的重复数据 ,我想用存储过程删除重复的数据 ,求各位帮帮忙 [解决办法]
delete from 表 where 列 in(select 列 from 表 group by 列 having count(列)>1)
那重复数据时怎么进入到库里的呢