I've sorted a mySQL table by total. But it can happen that some rows have the same value. If the rows have the same value I want to sort them by another row. Is this possible?
ID | pos | name | m1 | m2 | total
1  | 1   | mike | 1  | 1  | 50
2  | 2   | alex | 16 | 12 | 14
3  | 3   | joe  | 25 | 7  | 14 
4  | 4   | jani | 7  | 24 | 14
The table is sorted by total, but if total is the same I want to sort the rows with the same value by the m2 column and change the pos by that order.
 
    