I have the following table :
  **Country     Name        Number**
   us           John         45
   us           Jeff         35
   fr           Jean         31
   it           Luigi        25
   fr           Maxime       23
   ca           Justin       23
This table is order by Number. I want to have a query that for each country give me the name with highest number :
  **Country     Name        Number**
   us           John         45
   fr           Jean         31
   it           Luigi         25
   ca           Justin        23
I try to use distinct but I can't only make it on country if I want to print the all thing...
Have an idea ?'
EDIT : The table is obtain by a subquery
 
     
     
     
    