ソースコード
with tmp as (
    select TOTAL_VALUE as SA_MEDIAN, dense_rank() over (order by TOTAL_VALUE desc) as dense
    from CONVENIENCE
    where SURVEY_YEAR = 2019 and KIND_CODE = '100'
)
select case when max(dense) % 2 = 0 then max(dense) / 2 + 0.5 else max(dense) / 2 + 1 end as center
from tmp
;
提出情報
提出日時2023/10/03 17:34:28
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者fgdthfjgh
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
77 MB
データパターン3
WA
76 MB