S
Steve S
I need to replicate a number of records from one table back into the same
table so the user is spared the task of re-entering redundant data. this
table has the the primary key as autoNumber. When I run the following I get
a 'Key violation' error. I assume this is because I am trying to copy the
primary key field. Is there a way to exclude selected fields in an INSERT
INTO-- Select Table.*
Currently the SQL has a reference to all (except primary key) 36 fields in
the table.
INSERT INTO [Fees]
SELECT Fees.*
FROM Fees
WHERE (((Fees.[Contest ID])=42));
Any help is appreciated
table so the user is spared the task of re-entering redundant data. this
table has the the primary key as autoNumber. When I run the following I get
a 'Key violation' error. I assume this is because I am trying to copy the
primary key field. Is there a way to exclude selected fields in an INSERT
INTO-- Select Table.*
Currently the SQL has a reference to all (except primary key) 36 fields in
the table.
INSERT INTO [Fees]
SELECT Fees.*
FROM Fees
WHERE (((Fees.[Contest ID])=42));
Any help is appreciated