G
Guest
I'm trying to get this to work right but for some reason can't get the bracketing right. Anyone have any ideas on why I'm getting the following error when I try to execute this SQL Statemen
Error Ms
Join expression not supported
SQL Code
SELECT TR.ContactID, TR.TaskID, TR.task_completed, C.ContactID,
T.TaskID, T.task_name, T.task_owner, Ow.task_Ownernam
FROM ((Tasks T LEFT JOIN Transactions TR ON T.TaskID = TR.TaskID)
INNER JOIN Contacts C ON C.ContactID = TR.ContactID)
INNER JOIN Owner Ow ON T.task_owner = Ow.task_ownerI
WHERE C.ContactID = 8
Any insight would be greatly appreciated
Error Ms
Join expression not supported
SQL Code
SELECT TR.ContactID, TR.TaskID, TR.task_completed, C.ContactID,
T.TaskID, T.task_name, T.task_owner, Ow.task_Ownernam
FROM ((Tasks T LEFT JOIN Transactions TR ON T.TaskID = TR.TaskID)
INNER JOIN Contacts C ON C.ContactID = TR.ContactID)
INNER JOIN Owner Ow ON T.task_owner = Ow.task_ownerI
WHERE C.ContactID = 8
Any insight would be greatly appreciated