SQL 去重
时间:2014-05-04 17:36:38
收藏:0
阅读:314
delete from testtable a where (a.testcontent) in (select testcontent from testtable GROUP BY testcontent having count(*)>1) and seqid not in (select min(seqid) from testtable group by testcontent having count(*)>1)
评论(0)