开发者

How to find repeated Rows?

i am having 75000 row records i need to get how ma开发者_运维问答ny of them repeated,how can i do that in MySQL Query?


This query will return all duplicate rows, and the number of times they are duplicated

SELECT Col1, Col2,..ColLast, Count(*) As NumDups FROM YourTable
GROUP BY Col1,Col2,...,ColLast
HAVING COUNT(*) > 1;
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜