D
Devona
I am trying to run a Delete Query using two tables. Here is what I have so
far:
DELETE DISTINCTROW tblProjects.[Project Phase (Per EPMO)],
tblComments.[Project ID]
FROM tblProjects INNER JOIN tblComments ON tblProjects.ProjectID =
tblComments.[Project ID]
WHERE (((tblProjects.[Project Phase (Per EPMO)])="CMPLT"));
I keep getting asked for the table I want to delete from. What am I doing
wrong. To sum up what I want to delete: I want to delete closed projects in
one table and the comments that go with them from the other table. I already
have an append query to archive these closed projects in another table.
Thank you.
far:
DELETE DISTINCTROW tblProjects.[Project Phase (Per EPMO)],
tblComments.[Project ID]
FROM tblProjects INNER JOIN tblComments ON tblProjects.ProjectID =
tblComments.[Project ID]
WHERE (((tblProjects.[Project Phase (Per EPMO)])="CMPLT"));
I keep getting asked for the table I want to delete from. What am I doing
wrong. To sum up what I want to delete: I want to delete closed projects in
one table and the comments that go with them from the other table. I already
have an append query to archive these closed projects in another table.
Thank you.