My SQL query (qryEventBikess) is
Code: Select all
SELECT * FROM eventbikes
WHERE MemID = :MemID
AND EventID = :EventID
The delete statement should be (stored under the SQLDELETE properties)
Code: Select all
DELETE FROM eventbikes
WHERE EventMemID = :EventMemID but I cannot add the EventMemID Parameter to the SQL edit form generated by the query icon.
How do I do this?
It looks like EventMemID has to be in the main SQL statement before it is added to the parameter list.
EventBikesID is a auto-increment field.