Isaac
Lifelong Learner
- Local time
- Today, 09:05
- Joined
- Mar 14, 2017
- Messages
- 11,087
In sql server it is a little more clear because i might do:
delete tablename
from
[and go on to specify a join, perhaps, involving multiple tables]
...which would only delete from "tablename"
But in access I want to make sure I got this right. Here is my delete query. I want to delete ONLY from Backend_FeedbackCentral. Nowhere else.
delete tablename
from
[and go on to specify a join, perhaps, involving multiple tables]
...which would only delete from "tablename"
But in access I want to make sure I got this right. Here is my delete query. I want to delete ONLY from Backend_FeedbackCentral. Nowhere else.
Code:
DELETE * from BackEnd_FeedbackCentral
INNER JOIN [qryTopicBus in BEFC not in BID] ON (BackEnd_FeedbackCentral.[Bus Unit] = [qryTopicBus in BEFC not in BID].[Bus Unit]) AND (BackEnd_FeedbackCentral.[LRR Topic] = [qryTopicBus in BEFC not in BID].[LRR Topic]);