delete duplicates with 6 fields

User avatar
sal21
PlatinumLounger
Posts: 4354
Joined: 26 Apr 2010, 17:36

delete duplicates with 6 fields

Post by sal21 »

How to delete dupliates...

consider all values in all fileds

for example viale verona with CIVICO 6

i use ado and vb5 and access database
You do not have the required permissions to view the files attached to this post.

User avatar
HansV
Administrator
Posts: 78457
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: delete duplicates with 6 fields

Post by HansV »

Without a primary key it's impossible to decide which record to delete.

You could create a new table with unique records:

SELECT DISTINCT R05.*INTO R05_UNIQUE FROM R05
Best wishes,
Hans