reb_01501(at)yahoo(dot)com (Bob Barrows) wrote in message news:<3bad5086(dot)29922681(at)news(dot)charter(dot)net>...
> Do you care about ties? What if Ingrid, 38 yrs old, worked at IBM?
> Would you want to show both Ingrid and Maria? If so, this will work:
>
> Select Name From People t1 Inner Join
> (Select Company, Max(Age) As Oldest FROM People
> Group By Company) t2
> ON t1.Company = t2.Company AND t1.Age = t2.Oldest
>
Thanks a lot, the query work perfect! I dont care about ties... this
is just the query I need...
Bye