Computer Science, asked by Faizanmfk4854, 11 months ago

Count duplicates records in MySQL table?

Answers

Answered by pandeysakshi2003
0

have table with, folowing structure.

tbl

id name

1 AAA

2 BBB

3 BBB

4 BBB

5 AAA

6 CCC

select count(name) c from tbl

group by name having c >1

The query returning this result:

AAA(2) duplicate

BBB(3) duplicate

CCC(1) not duplicate

The names who are duplicates as AAA and BBB. The final result, who I want is count of this duplicate records.

Result should be like this: Total duplicate products (2)

make me brainlist

Similar questions