Duplicate Fields

RobW

New member
Local time
Today, 14:44
Joined
Mar 25, 2004
Messages
6
When I query a query and include fields from a table, the fields duplicate. I sorted this by selecting the join type as "only include rows where the joined fields from both tables are equal". I have two tables and two queries that I want to create a query about. The joins come via the field FirstName. Is there a join type I should create? Any one help?
 
RobW said:
When I query a query and include fields from a table, the fields duplicate. I sorted this by selecting the join type as "only include rows where the joined fields from both tables are equal". I have two tables and two queries that I want to create a query about. The joins come via the field FirstName. Is there a join type I should create? Any one help?

post your sql statement here for a look...
 
SELECT tblMembers.MemberNumber, tblMembers.FirstName, qry1QtyDNB.QtyDNB2, qry1QtyNotOut.QtyNotOuts
FROM qry1QtyDNB, qry1QtyNotOut, tblMembers INNER JOIN tblScoreCard ON tblMembers.MemberNumber = tblScoreCard.MemberNumber;
 

Users who are viewing this thread

Back
Top Bottom