WaterTight
Programmer
I need to left outer join both the Adjustments and the Payments tables to the Cases table where the CaseID's are equal. Sounds simple enough...
According to my understanding, that should work - however, I keep getting:
syntax error, missing operator in query expression 'Cases.CaseID = Adjustments.CaseID Left Join Payments On Cases.CaseID = Payments.CaseID'
What am I doing wrong here? Also, where do you specify that tables that you're joining? is it purely in the 'On' clause? Is it in the placement of parenthesis?
thanks,
Jeff
Code:
SELECT Cases.Units From Cases
Left Join Adjustments On
Cases.CaseID = Adjustments.CaseID
Left Join Payments On
Cases.CaseID = Payments.CaseID
According to my understanding, that should work - however, I keep getting:
syntax error, missing operator in query expression 'Cases.CaseID = Adjustments.CaseID Left Join Payments On Cases.CaseID = Payments.CaseID'
What am I doing wrong here? Also, where do you specify that tables that you're joining? is it purely in the 'On' clause? Is it in the placement of parenthesis?
thanks,
Jeff