theConjurian
IS-IT--Management
I am working on an application for a talent agency. The top three tables are customers, event, entertainers (think customers, orders, order lines). The primary keys are as follows:
Customers: ContactID
Events: ContactID, ReferenceNo
Entertainers: ReferenceNo, LineNo
The Customer detail form has a subform on it whose query contains a join:
SELECT Events.*, Events.EventDate, Entertainment.*, Entertainment.StartTime
FROM Events INNER JOIN Entertainment ON Events.ReferenceNo = Entertainment.ReferenceNo
ORDER BY Events.EventDate DESC , Entertainment.StartTime DESC;
The query is not updateable and I cannot figure out why. I am looking for some suggestions as to how to fix this. I'm not sure what it was that I changed that made it stop working.
Customers: ContactID
Events: ContactID, ReferenceNo
Entertainers: ReferenceNo, LineNo
The Customer detail form has a subform on it whose query contains a join:
SELECT Events.*, Events.EventDate, Entertainment.*, Entertainment.StartTime
FROM Events INNER JOIN Entertainment ON Events.ReferenceNo = Entertainment.ReferenceNo
ORDER BY Events.EventDate DESC , Entertainment.StartTime DESC;
The query is not updateable and I cannot figure out why. I am looking for some suggestions as to how to fix this. I'm not sure what it was that I changed that made it stop working.