RE: How we can count duplicate entry in particular table ?
You can use these two methods to find out the Duplicate Entries. There are some more ways to do the same But I am not able to recollect those at this time. Anyways these two will do the work for you.
Select ename From emp Group by ename having count(ename) > 1 ;
Select a.ename b.empno from EMP a EMP b where a.ename b.ename and a.empno <> b.empno;