以下のようにidと名前を持つテーブルを任意の順番にソートするサンプルを紹介します。
SQL
select
id,
student_name,
-- 任意の順番で並び替え(2→3→1→4)
case id
when 2 then 1
when 3 then 2
when 1 then 3
when 4 then 4
else null end as sort_no
from practice_test_score_table
order by sort_no;
・結果