am finding hard to delete duplicates records.
want to delete the records
here is my query
delete from ldataphd.srvalt3 where a3_loan in (select a3_loan from 
ldataphd.srvalt3 group by a3_loan having(*) >1)
above query deleting all the records.
table:
 a3_loan     a3_seq
 1744         1
 1744         32
 1844         1
 1844         35
expected output
a3_loan      a3_seq
 1744          1
 1844          1
 
     
     
     
     
     
     
    