Om jag förstår det rätt kan du använda union all
för att beräkna summan för varje kolumn och sedan order by
och limit
:
select c.*
from ((select 'col1', sum(col1) as s from t) union all
(select 'col2', sum(col2) as s from t) union all
. . .
(select 'col10', sum(col10) as s from t)
) c
order by s desc
limit 3;