only show one entry per (1 Viewer)

stu_c

Registered User.
Local time
Today, 07:00
Joined
Sep 20, 2007
Messages
489
Hi all
I want to run a query that when runs only shows words from a specific column but does not show duplicates of words is that possible?
for example if the list was:
BODYWORK
BODYWORK
ENGINE
ENGINE
ENGINE
WINDSCREEN
TYRES

I would like the query to run but only show
BODYWORK
ENGINE
WINDSCREEN
TYRES

I do not want it to delete the records just not show them in that specific query
 

ebs17

Well-known member
Local time
Today, 08:00
Joined
Feb 7, 2020
Messages
1,946
SQL:
SELECT DISTINCT FieldX
FROM TableY
 

stu_c

Registered User.
Local time
Today, 07:00
Joined
Sep 20, 2007
Messages
489
thank you!
 

Users who are viewing this thread

Top Bottom