【Vegas原创】查找删除重复键的数据

--查找重复的Custno列的数据
SELECT * FROM SCM_Customer
WHERE   Custno IN
  (
SELECT  Custno
    
FROM  SCM_Customer
    
GROUP BY Custno
    
HAVING  (COUNT(Custno) > 1))

--删除重复的Custno列的数据
delete SCM_Customer 
where custno in
(
SELECT Custno
    
FROM  SCM_Customer
    
GROUP BY Custno
    
HAVING  (COUNT(Custno) > 1))

 

posted @ 2009-01-16 13:06  李济宏(Amadeus)  阅读(129)  评论(0编辑  收藏  举报