platypus71
Technical User
I am having problems with a query. When I run my query in View mode, it reports exactly what I want to delete. When I run it in delete mode, it says it can't delete and recommends I don't have access to do that, but I do.
Here is my SQL of the query. Am I trying to do something Access isn't capable of or am I missing something?
Here is my SQL of the query. Am I trying to do something Access isn't capable of or am I missing something?
Code:
DELETE [tblWaitlistRequests].*, [tblWaitlistRequests].[WaitKey]
FROM [tblWaitlistRequests], [qryWaitlistAttended]
WHERE ((([tblWaitlistRequests].[WaitKey])=[qryWaitlistAttended]![WaitKey]));