Question : mysql sww the duplicate on colum1 colum2 colum3

How can I cout the duplicate on colum1 and colum2 and colum3

I want the same address that duplicate

Hno  road  destrict     if 3 colums  is the same it mean it the same place

Answer : mysql sww the duplicate on colum1 colum2 colum3

I think the following should show what you want.
1:
2:
3:
4:
5:
6:
7:
SELECT Hno,  road, destrict 

FROM MyTable

GROUP BY Hno,  road, destrict 

HAVING COUNT(Hno) >1
Random Solutions  
 
programming4us programming4us