Actually, I'm a mysql transplant. I'm forced to use ms access because I can't join two tables from different datasets in ssrs.
I went through the query building function and got this:
I turned it into something realistic for humans to consume, and got:
SELECT *
FROM (dbo_GL00100 INNER JOIN dbo_GL30000 ON dbo_GL00100.ACTINDX = dbo_GL30000.ACTINDX) INNER JOIN dbo_AcctTransactions ON dbo_GL30000.ORDOCNUM = dbo_AcctTransactions.DocumentNumber;
which, of course no human can program. I changed it into something reasonable like:
SELECT *
FROM
dbo_GL30000
left JOIN dbo_GL00100 ON dbo_GL30000.ACTINDX = dbo_GL00100.ACTINDX
left JOIN dbo_AcctTransactions ON dbo_GL30000.ORDOCNUM = dbo_AcctTransactions.DocumentNumber;
now access won't accept it and says there's an error.
Do I really have to nest each join an a parenthesis, never mind that there isn't an alias for each parenthesis
I went through the query building function and got this:
I turned it into something realistic for humans to consume, and got:
SELECT *
FROM (dbo_GL00100 INNER JOIN dbo_GL30000 ON dbo_GL00100.ACTINDX = dbo_GL30000.ACTINDX) INNER JOIN dbo_AcctTransactions ON dbo_GL30000.ORDOCNUM = dbo_AcctTransactions.DocumentNumber;
which, of course no human can program. I changed it into something reasonable like:
SELECT *
FROM
dbo_GL30000
left JOIN dbo_GL00100 ON dbo_GL30000.ACTINDX = dbo_GL00100.ACTINDX
left JOIN dbo_AcctTransactions ON dbo_GL30000.ORDOCNUM = dbo_AcctTransactions.DocumentNumber;
now access won't accept it and says there's an error.
Do I really have to nest each join an a parenthesis, never mind that there isn't an alias for each parenthesis