Hi!
I'm very new to Access and I've got a problem.
I have a query looking like this:
SELECT *
FROM tblA INNER JOIN qryA ON tblA.ProjectNo= qryA.ProjectNo;
It is supposed to select only the rows from tblA which has a ProjectNo equal to any of the values of the ProjectNo column in qryA (the only existing column in that query).
My problem is that this results in my ProjectNo column being named "tblA.ProjectNo" and another column named "qryA.ProjectNo" is added in the far right of the query.
The contents of these columns is the same, ie project numbers. Apart from this above problem the query works as it should.
Can anyone please give me advice on how to solve this?
Thanks!
I'm very new to Access and I've got a problem.
I have a query looking like this:
SELECT *
FROM tblA INNER JOIN qryA ON tblA.ProjectNo= qryA.ProjectNo;
It is supposed to select only the rows from tblA which has a ProjectNo equal to any of the values of the ProjectNo column in qryA (the only existing column in that query).
My problem is that this results in my ProjectNo column being named "tblA.ProjectNo" and another column named "qryA.ProjectNo" is added in the far right of the query.
The contents of these columns is the same, ie project numbers. Apart from this above problem the query works as it should.
Can anyone please give me advice on how to solve this?
Thanks!