From: Doones on
I have done a query in Access and duplicate records are showing up and I'd
like to have the duplicates not be displayed. Can someone assist me with
this. Thanks!
--
Lorna
From: PieterLinden via AccessMonster.com on
Doones wrote:
>I have done a query in Access and duplicate records are showing up and I'd
>like to have the duplicates not be displayed. Can someone assist me with
>this. Thanks!

Instead of
SELECT Field1, Field2...
FROM MyTable....

use
SELECT DISTINCT Field1, Field2...
FROM MyTable....

--
Message posted via http://www.accessmonster.com