It may not make any difference, but I always specify asc or desc order.
e.g.
select field_names from table_name order by field1 asc, field2 asc
Also, remember that sorting character strings and numbers (int, float, etc) is different.
If you were to sort a the integers 2 and 10, it would look like {2, 10}.
If you were to sort the strings "2" and "10", it would look like {10, 2}.
Hope this helps,
DLB