I was wondering if it was possible to order rows by another column if the first one is the same value as other(s)
e.x. ordering by Level (3 players have the same level), I want to then order by current EXP
Thanks
Yeah, you can do multiple ORDER BYs in one statement.
SELECT * FROM table ORDER BY level ASC, EXP ASC