Here I am using CTE(Common Table Expression) for Delete duplicate rows.
PARTITION BY : It devides the query result into partitions
Row_NUMBER : gives unique name for all duplicate rows ie., if one row record repeated for 3 times . it gives the index such as 1,2 and 3
Using this query we can delete all duplicate rows in a table
With EmployeeCTE AS
(
Select *, ROW_NUMBER() Over (Partition BY ID order by ID)as RowIndex
from tbl_Employees)
--- Here we are going to delete all duplicate records except one record(original)
Delete from EmployeeCTE Where RowIndex > 1
Post your comments / questions
Recent Article
- Import "django.shortcuts" could not be resolved from source in Django Project
- How to add two numbers in Android Studio? | Source Code
- FindViewByID returns null in android studio -SOLVED
- Saving changes is not permitted in SQL SERVER - [SOLVED]
- Restore of database failed. File cannot be restored over the existing. -[SOLVED]
- One or more projects in the solution were not loaded correctly in Visual Studio 2019 | FIXED
- How to find Laptop's Battery Health?
- SOLVED-Related Field got invalid lookup: icontains error in Django
Related Article