Che io sappia non è fattibile automaticamente. Comunque puoi crearti un campo nel quale inserisci la posizione da te voluta ed ordinare su questo campo. E' un po' contorto ma funzionerà.
Esempio : assumo che il nuovo campo sia pippo
// azzerare il campo
update tabella set pippo = 0;
//
update tabella set pippo = 1 where id=6
update tabella set pippo = 2 where id=3
update tabella set pippo = 3 where id=5
update tabella set pippo = 4 where id=9
//
select username from tabella where pippo <> 0 order by pippo