Něco takového můžete vytvořit jinou objednávku. Je to hack.
select * from table
order by (
case name
when 'Health' then 0
when 'Flute 10' then 1
when 'Freeze' then 2
when 'Bass Flute' then 3
end
)
A pravděpodobně je lepší použít sloupec id.
select * from table
order by (
case id
when 3 then 0
when 1 then 1
when 4 then 2
when 2 then 3
end
)