A
Angela Corvaia
Help!
I have two tables, the original: Project and the newest
version: Project1. I want to Append about 40 new records
from the Project1 table (which contains 440 records) to
the Project table (which has 1425 records). Both tables
have QuoteNo as a primary, unique key.
The following Append Query is adding 400 records from
Project 1 - Just the Opposite of the new 40 records I
want.
INSERT INTO Project ( QuoteNo, QuoteRev, QuoteDate,
CustomerNo, Customer, CustomerRef, CustomerType, Status )
SELECT DISTINCTROW Project.QuoteNo, Project.QuoteRev,
Project.QuoteDate, Project.CustomerNo, Project.Customer,
Project.CustomerRef, Project.CustomerType, Project.Status
FROM Project RIGHT JOIN Project1 ON Project.QuoteNo =
Project1.QuoteNo;
HELP!!!!
I have two tables, the original: Project and the newest
version: Project1. I want to Append about 40 new records
from the Project1 table (which contains 440 records) to
the Project table (which has 1425 records). Both tables
have QuoteNo as a primary, unique key.
The following Append Query is adding 400 records from
Project 1 - Just the Opposite of the new 40 records I
want.
INSERT INTO Project ( QuoteNo, QuoteRev, QuoteDate,
CustomerNo, Customer, CustomerRef, CustomerType, Status )
SELECT DISTINCTROW Project.QuoteNo, Project.QuoteRev,
Project.QuoteDate, Project.CustomerNo, Project.Customer,
Project.CustomerRef, Project.CustomerType, Project.Status
FROM Project RIGHT JOIN Project1 ON Project.QuoteNo =
Project1.QuoteNo;
HELP!!!!