I want to be able to delete "all" the records from the results of the query below. So if I find two John Smiths with same date of birth, delete them both.
Select LastName, FirstName, DateOfBirth, Count () As Duplicates From PatientDemographics2 Group by FirstName, LastName, DateOfBirth Having count () >1 Order by LastName, FirstName Asc