ソースコード
with WORK as (
    select
        *,
        row_number() over(
            order by total_value desc
        ) as rownum,
        count(*) over (partition by kind_code) as count
    from
        convenience
    where
        survey_year = '2019' and
        kind_code = '100'
)
select
    round(avg(total_value)) as SA_MEDIAN
from
    work
where
    rownum between count * 1.0 / 2 and count * 1.0 / 2 + 1
提出情報
提出日時2023/04/12 11:30:17
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者kanta_phi
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
76 MB
データパターン2
AC
76 MB
データパターン3
AC
85 MB