With the following data from a SELECT * FROM (SELECT...) AS foo:
ID    Country   Area
1     US        100
1     UK        200
2     AU        150
2     NZ        250
how can you select the top area and country by ID? So GROUP BY ID and MAX(DESC) but also include the County.
The the result of the query would be:
1     UK     200
2     NZ     250
 
     
     
    