B
Bill
SELECT [q#Asgnmnt].CallID
FROM [q#Asgnmnt] LEFT JOIN [q#CallLog] ON [q#Asgnmnt].CallID =
[q#CallLog].CallID
WHERE ((([q#CallLog].CallID) Is Null));
This above query returns what I call 'floating assignments' from our
helpdesk data. They are effectively assignments that do not have a
corresponding call log and I want to delete them but the returned data is
read only and I can't.
Can anyone help please?
Ta.
Bill
FROM [q#Asgnmnt] LEFT JOIN [q#CallLog] ON [q#Asgnmnt].CallID =
[q#CallLog].CallID
WHERE ((([q#CallLog].CallID) Is Null));
This above query returns what I call 'floating assignments' from our
helpdesk data. They are effectively assignments that do not have a
corresponding call log and I want to delete them but the returned data is
read only and I can't.
Can anyone help please?
Ta.
Bill