IN、OUT、FINISHEDのカスタムオーダーをしたいです。
ケースステートメントを離れると、FINISHED、IN、OUT になります。この解決策を見つけましたが、うまくいきません - エラーが発生しています。
select distinct 'IN' as STATUS,
(select count(*) ...)
from table
UNION ALL
select distinct 'OUT',
(select count(*) ...)
from table
UNION ALL
select distinct 'FINISHED',
(select count(*) ...)
from table
order by
case STATUS
when 'IN' then 1
when 'OUT' then 2
when 'FINISHED' then 3
end