How to count Duplicate Rows in a Table
Hi,
I have a employee table I want to Count how many duplicate rows in my employee table
Please Share Count Query
Solutions

Rizwan Saqib
Select Count( EmployeeName )From Employee
Group By EmployeeName
Having Count(EmployeeName)>1