I have this example table:
id        city       show    
-------  -------    ------ 
 1        Paris     Show1
 2        NY        Show1
 3        Paris     Show2
 4        Madrid    Show3
 5        Madrid    Show3
 6        NY        Show2
 7        NY        Show1
 8        Paris     Show2
Plz can Anyone help me with a MySQL query to get the most seen show by city. The result should be like this:
city      Show      Occurence
 NY       Show1        2
Paris     Show2        2
Madrid    Show3        2
I will be very grateful for your help.
 
     
    