--找到重复纪录
select sortcolid from Tab_SpeaialSort group by sortcolid having count(*) > 1
-- 2) 删除重复记录
--
-- delete from table A where A.rowid < (select max(B.rowid) from table B where A.a = B.a)
--该文章转载自网络大本营:http://www.xrss.cn/Dev/DataBase/2007111017495.Html