ソースコード
with total_values as (
    select
        total_value,
        (row_number() over (order by total_value) - 1) as i
    from
        convenience
    where
        survey_year = 2019 and
        kind_code = '100'
    order by
        total_value
)
select
    round(avg(total_value)) as SA_MEDIAN
from
    total_values
where
    i = ((select count(*) from total_values) - 1) / 2 or
    i = (select count(*) from total_values) / 2
;
提出情報
提出日時2022/12/17 13:26:21
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者tekihei2317
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
76 MB
データパターン3
AC
76 MB