I have a situation where I keep getting a syntax error for a Select statement.
My questions is.
Can I use select in VBA Code with a query I have already built for two related tables or should I start from scratch using the join?
Here is the code copied from the SQL View of the Query:
OR
Can I use the query
In either case, can somebody show me how to parse the SELECT statement using the above.
Much appreciated
John
My questions is.
Can I use select in VBA Code with a query I have already built for two related tables or should I start from scratch using the join?
Here is the code copied from the SQL View of the Query:
Code:
SELECT DISTINCTROW * FROM Parishoners INNER JOIN [Monthly Contribution] ON Parishoners.ParishonersID = [Monthly Contribution].ParishonersID;
OR
Can I use the query
Code:
SELECT * FROM [Parishoners Query] where Parishoners.ParishonersID = [Monthly Contribution].ParishonersID
In either case, can somebody show me how to parse the SELECT statement using the above.
Much appreciated
John