Syntax Error From Clause (1 Viewer)

Jakboi

Death by Access
Local time
Today, 03:28
Joined
Nov 20, 2006
Messages
303
Hello,

Found this here and was trying to do the following. Delete rows in my table that are dupicates and put them into a new table.

Keep getting a syntax error.

Code:
SELECT DISTINCT * FROM tblRaw INTO tblClientcontacts

Anyone know why?

I have a table that has 12,000 rows. Out of those rows are 1600 uniques. I need to delete all the duplicates. Is this a way to do it?

Thanks.
 

Jon K

Registered User.
Local time
Today, 08:28
Joined
May 22, 2002
Messages
2,209
SELECT DISTINCT * INTO tblClientcontacts
FROM tblRaw
.
 

Users who are viewing this thread

Top Bottom