G
Guest
Ok, I have a database that contains a table with current construction
projects. It will soon contain a table with the updated constructions
projects. I have a Left Outer Join that returns the records that are in the
Original_Table but not in the Updated_Table. Using the following concept:
SELECT *
FROM Original_Table LEFT JOIN [Updated_Table] ON Original_Table.ID =
[Updated_Table].ID
WHERE [Updated_Table].ID IS NULL;
Is there a way to get Access to delete these records? I changed it into a
delete query and I keep getting the following message:
"Specify the table containing the records that you want to delete."
I am assuming that this message appears because it adds the
[Updated_Table].ID field to the query. Does anyone have any suggestions?
Thanks in advance,
Suzie
projects. It will soon contain a table with the updated constructions
projects. I have a Left Outer Join that returns the records that are in the
Original_Table but not in the Updated_Table. Using the following concept:
SELECT *
FROM Original_Table LEFT JOIN [Updated_Table] ON Original_Table.ID =
[Updated_Table].ID
WHERE [Updated_Table].ID IS NULL;
Is there a way to get Access to delete these records? I changed it into a
delete query and I keep getting the following message:
"Specify the table containing the records that you want to delete."
I am assuming that this message appears because it adds the
[Updated_Table].ID field to the query. Does anyone have any suggestions?
Thanks in advance,
Suzie