A family of Microsoft relational database management systems designed for ease of use.
The following is an example of a simple query which will delete all bar one of each subset of rows where the FirstName and LastName columns have, in combination, duplicate values:
DELETE *
FROM Contacts AS C1
WHERE ContactID <>
(SELECT MAX(ContactID)
FROM Contacts AS C2
WHERE C2.LastName = C1.LastName
AND C2.FirstName = C1.FirstName);
ContactID is the numeric primary key of the table.