sql#查重
时间:2017-11-25 22:12:28
收藏:0
阅读:250
select count (asin) from dbo.amazon_product_store
where asin in (select asin from dbo.amazon_product_store group by asin having count
(asin) > 1)
原文:http://www.cnblogs.com/sam-sun/p/7896596.html
评论(0)