- Joined
- Jun 13, 2005
- Messages
- 148
- Reaction score
- 0
I am trying to create a query based on several(4) linked tables each sharing a unique key(client ID).
PROBLEM: If i leave the tables linked, as they are the query brings back no results, i beleive because no 1 client exists in all tables.
HOWEVER: unlinking the tables(just in the query) returns all records, duplicated displaying inaccurate results for that record. (showing boxes checked that should be empty and so). There seems to be 2 results for each record, each time though displayin diffrent data for that revcord.
I have searched several places and havbe had no luck and suggestions AT ALL will be greatly appreciated.
below is a sample of a very small test query that still dont work.
PLEASE HELP
SELECT ClientDemographics.CaseNumber, [Confession Judgement].[01ConfessionJudgement], [Court Judgement].[01CourtJudgement], [Satisfaction Judgement].[01SatisfactionJudgement]
FROM ClientDemographics, [Confession Judgement], [Court Judgement], [Satisfaction Judgement];
PROBLEM: If i leave the tables linked, as they are the query brings back no results, i beleive because no 1 client exists in all tables.
HOWEVER: unlinking the tables(just in the query) returns all records, duplicated displaying inaccurate results for that record. (showing boxes checked that should be empty and so). There seems to be 2 results for each record, each time though displayin diffrent data for that revcord.
I have searched several places and havbe had no luck and suggestions AT ALL will be greatly appreciated.
below is a sample of a very small test query that still dont work.
PLEASE HELP
SELECT ClientDemographics.CaseNumber, [Confession Judgement].[01ConfessionJudgement], [Court Judgement].[01CourtJudgement], [Satisfaction Judgement].[01SatisfactionJudgement]
FROM ClientDemographics, [Confession Judgement], [Court Judgement], [Satisfaction Judgement];