View Single Post
  #2 (permalink)  
Old 02-05-2008, 11:17 PM
Dimitar
 
Posts: n/a
Default ANY answer. Re: Select Query with different fields

Hi,

Does this solve the issue:
Code:
SELECT email, max(firstname),max(lastname) FROM t GROUP BY 
email;
If yes, you could consult your SQL manual about grouping and grouping functions that filter results within each group.

Hope this helps,
Dimitar
Reply With Quote