Duplicate results in my query

G

Guest

I created a query to show all entities signed up for certain events. Because
those entities can sign up multiple times for events, I get multiple entries.
Can I get access to show an entity only one time instead of multiple?
 
L

Lynn Trapp

You probably can by using the DISTINCT predicate in your query

SELECT DISTINCT Field1, Field2, Field3....
FROM YourTable;

Can you post the SQL of your query for us to look at?
 
G

Guest

If you are only returning columns from the referenced (one-side) table or any
columns returned from the referencing (many-side) table all contain the same
values for each row in the referenced table change the query to a SELECT
DISTINCT query, which you can do in SQL view or by setting the 'Unique
Values' property to 'Yes' in the query's properties sheet.

Ken Sheridan
Stafford, England
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top