> When there are records with duplicate 
> emails addresses, I need to include one of them. 

So you are trying to display one record for each email address? 

You could try something like this. Not tested, but the idea is to select a 
single PK for each email. Then use a JOIN to display the details for those 
PK's. 


SELECT m.lastname, m.firstname, m.city, m.state 
FROM   mytable AS m INNER JOIN
       (
        SELECT  email, max(YourPK) AS YourPK
        FROM    myTable
        GROUP BY email
       ) as e ON m.YourPK = e.YourPK


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:312598
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to