I'm trying to use the below FROM clause in a query, but it is consistantly returning the error "Syntax error in JOIN operation." Could someone please help me understand why this error is occuring? Thanks.
--
Mike
"Don’t get suckered in by the comments – they can be terribly misleading. Debug
only code. – Dave Storer.
Code:
FROM qryproductionreportdetailset
LEFT JOIN tblOrder ON qryproductionreportdetailset.OrderID = tblOrder.OrderID, qryproductionreportdetailset
INNER JOIN tblOrderDetail ON tblOrder.OrderID = tblOrderDetail.OrderID
--
Mike
"Don’t get suckered in by the comments – they can be terribly misleading. Debug
only code. – Dave Storer.