G
Guest
OK, so, for example,
SELECT [CB Budget ].SERVICE_TYPE,
Sum([QUARTER1_CHARGE]+[QUARTER2_CHARGE]+[QUARTER3_CHARGE]+[QUARTER4_CHARGE])
AS CBTotal
FROM [CB Budget ] LEFT JOIN ACTccs ON [CB Budget ].TO_CC = ACTccs.CC
GROUP BY [CB Budget ].SERVICE_TYPE;
is NOT what I want. I'd like the results where [CB Budget].TO_CC <> ACTccs.CC
I'm not sure that a LEFT JOIN quite works for this. But, what would be the
query syntax if I want the "difference?" That is, not what is represented by
a LEFT JOIN where the criteria is =. I hope I'm making myself clear.
SELECT [CB Budget ].SERVICE_TYPE,
Sum([QUARTER1_CHARGE]+[QUARTER2_CHARGE]+[QUARTER3_CHARGE]+[QUARTER4_CHARGE])
AS CBTotal
FROM [CB Budget ] LEFT JOIN ACTccs ON [CB Budget ].TO_CC = ACTccs.CC
GROUP BY [CB Budget ].SERVICE_TYPE;
is NOT what I want. I'd like the results where [CB Budget].TO_CC <> ACTccs.CC
I'm not sure that a LEFT JOIN quite works for this. But, what would be the
query syntax if I want the "difference?" That is, not what is represented by
a LEFT JOIN where the criteria is =. I hope I'm making myself clear.