From: Jay Miller Date: April 15 1999 12:10pm Subject: RE: (Wading straight in...) (Query Help) List-Archive: http://lists.mysql.com/mysql/1898 Message-Id: <000a01be8738$fd93e900$0300a8c0@office.socket.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit > select email, id, name from table group by email; > > ... should do it... if u have duplicate email's then it takes first > record with the email and shows id and name from this record... You know, many people have mentioned using the GROUP BY clause for this purpose to me, and I just thought they misunderstood my question. Microsoft Access requires that all fields in the SELECT clause be aggregate functions or appear in the GROUP BY clause, so this doesn't work there. I see now that MySQL treats this differently (and much better, I might add). Thanks to everyone who has helped. Jay