trivial question:
for a 'rank' column with possible values 0 to 5
I want to display rows in order: rank '1', '2', '3' etc and lastly any with value '0' - there can be multiple rows with '0' rank.
(Value zero is the default undefined value, integers are user assigned)
obviously ORDER BY 'rank' doesnt do it
I ended up getting php to force my zero values to equal 7 which works fine but is a kludge
is there a better way to use ORDER BY to solve the problem?