I was helping someone out today on Experts-Exchange who had a quite a few duplicate records in a table that he wanted to get rid of. Here’s an example of the data.
SELECT * FROM People
GO
LastName FirstName
-------- ---------
Smith John
Smith John
Smith John
Jackson Tom
Jones Sarah
Jones Sarah
Williams Jessica
As you can see, there is nothing in this table that makes each row unique, and therefore you cannot delete one of the records for John Smith without deleting both records.

