ソースコード
select
round(avg(total_value)) as SA_MEDIAN
from(select total_value
      from convenience
      where survey_year = 2019 and kind_code ='100'
      order by 1
      limit 2 - (select count(*) from convenience where survey_year = 2019 and kind_code ='100') % 2    -- odd 1, even 2
      offset (select (count(*) - 1) / 2
              from convenience
              where survey_year = 2019 and kind_code ='100'))
提出情報
提出日時2024/04/10 22:44:57
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者sakichiii
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB
データパターン3
AC
83 MB