this should be really simple.
where tablename is the name of the table and value is the field you wish to grab the highest value you for. This would solve your problem
| Code: : |
select from tablename order by value DESC limit 0, 3
|
Let me know if there are any problems