@Deven Oza
If it's a full duplicate (all columns are the same), use SELECT... DISTINCT... INTO...a new table.
Up to you if you either:
1. truncate your table
2. insert from newly created one.
or
1. drop your table
2. rename the newly created table.
Happy coding!
-- CK