SQL Interview: 52 Deleting duplicated rows
This is a post in the SQL Interview series. These aren’t trick or gotcha questions, they’re just questions designed to scope out a candidate’s knowledge around SQL Server and Azure SQL Database.
Section: Administrator Level: Medium
Question:
You have an ETL process that loads employee details into a table named Staging.Employees. The table has the following columns:
- EmployeeID (int)
- FullName (nvarchar(100))
- LoginName (varchar(100))
The table is a heap and has no primary key.
2025-06-01
