R
RFJ
I've got a simple query where I can't get the syntax right. The aim is to
report each unique organisation name once only - but the following code
shows repeats.
SELECT
.Org_Name,
.Comment,
.[Data-recd]
FROM Table
WHERE (((
.[Data-recd])=Yes));
I've been trying to use SELECT DISTINCT (on Org_name) in line 2 but can't
get it to work. Is that the right way of doing it and, if so, can SKS give
me the correct syntax.
TIA
Rob
report each unique organisation name once only - but the following code
shows repeats.
SELECT
FROM Table
WHERE (((
I've been trying to use SELECT DISTINCT (on Org_name) in line 2 but can't
get it to work. Is that the right way of doing it and, if so, can SKS give
me the correct syntax.
TIA
Rob