Bạn có thể tạo một đơn hàng khác để làm như thế này. Đó là một cuộc tấn công.
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
)
Và có lẽ bạn nên sử dụng cột 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
)