I Have a table like this:
Date   | Expedition Name | Invoice
___________________________________________
4/6/12 | Starsindo       | X001908
4/6/12 | Starsindo       | X001900
4/6/12 | De Ros indah    | X002008
4/6/12 | De Ros indah    | X002108
4/6/12 | De Ros indah    | X002208
4/6/12 | Starsindo       | X002308
4/6/12 | Starsindo       | X002408
4/6/12 | Starsindo       | X002508 
4/6/12 | Japex           | X002608 
How to make a query with mysql to display the names of the three expeditions that most often appear in the same date?
I just created this query, but still confused:
Select  * From tb_exp_expor  Order By nama_exp_expor DESC
 
     
     
    