Well, the database structure you're implying has put a slightly worried frown on my face - if you're needing to do that it suggests a conceptual failure somewhere along the line.
Since SELECTs return records, not fields, you'd probably be needing to return all 20 fields in the record and using PHP to locate the ten largest. The alternative would probably be some rather frightening and nasty MySQL-function mess.
On the off chance you mean records and not fields, that would just be a matter of adding "ORDER BY myfield DESC LIMIT 10" clauses to the end of the query.