Record Duplication When Creating Queries

C

cgbaker

I'm linking tables in a query and as I do so, the records are duplicated.
What do I need to do to prevent this from happening?
 
M

mscertified

Depends what your query is, post the SQL. Essentially you need a join column
that links the tables. You may also need SELECT DISTINCT instead of just
SELECT.

-Dorian
 
Top