Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select Query That Doesn't Show Duplicates

Status
Not open for further replies.

knighty03

Technical User
Aug 12, 2003
32
0
0
GB
I want to create a select query whereby it will show all records but will show only 1 record of a duplicate e.g. I might have say "FORD" entered in three times but in the query I would want it to show only one of these as it is not important how many times it has been entered. Any help would be grateful.
 
Hi use

SELECT DISTINCT Table1.period
FROM Table1;
where Table1 is your table name and period your field name
 
Also you could set the Unique Values option in PROPERTIES of the query.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top