Question : SQL Duplicate Records

Seems pretty straight forward, but I cant really find a simple way of doing this. How can I loop through my table and delete Duplicates? The proble that I have is that I am using a primary key. I have a lot of duplicate records except for the Primary Key.

tx

Answer : SQL Duplicate Records

1:
2:
3:
4:
5:
6:
delete 
from tblBusinessListings
where businessID not in 
(select min(businessID)
from tblBusinessListings
group by businessName, [business ZipCode])
Random Solutions  
 
programming4us programming4us