I know how to delete duplicate records using CTE.
How can we achieve this without using CTE [Interview Question]
Is it possible?
Example: Table with the following data:
name     salary
-----------------
Husain   20000.00
Husain   20000.00
Husain   20000.00
Munavvar 50000.00
Munavvar 50000.00
After deleting the duplicate records table should contains data like this :
name     salary
-----------------
Husain   20000.00
Munavvar 50000.00
 
     
     
     
    

 
     
    