ugly solution:
select a,b,...f from table1 where id in 6 UNION select a,b,...f from table1 where id in 33 and so on..
"best" solution: add another column to your query and make case 6, then 0, case 33 then 1, etc.
select a,b,...f , case id when 6 then 0 when 33 then 1 <and so on> end from table1 where ...
and then sort by this new column
Diego source share