ソースコード
    with temp as (
    select
        PF_CODE,TOTAL_VALUE
    from
        CONVENIENCE
    where
        KIND_CODE='100'
        and
        SURVEY_YEAR='2019'
    ), temp2 as (
    select
        PF_CODE,TOTAL_VALUE, (select count(*) from temp as t0 where t0.TOTAL_VALUE<=t.TOTAL_VALUE) as num, (select count(*) from temp) as tnum
    from
        temp as t
    )
    select
        round(avg(TOTAL_VALUE)) as SA_MEDIAN
    from
        temp2
    where
        tnum%2=0 and (cast(tnum/2 as integer)=num or cast(tnum/2 as integer)+1=num)
        or
        tnum%2<>0 and cast(tnum/2 as integer)+1=num
提出情報
提出日時2022/12/10 07:27:15
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者hamanonz
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB
データパターン3
AC
78 MB