ソースコード
with ordered_purchases as (
  select
      TOTAL_VALUE,
      row_number() over (order by TOTAL_VALUE DESC) as row_id,
      (select count(1) from CONVENIENCE where SURVEY_YEAR = 2019
        and KIND_CODE = '100') as ct
  from CONVENIENCE
  where SURVEY_YEAR = 2019
  and KIND_CODE = '100'
)
select round(avg(TOTAL_VALUE)) as SA_MEDIAN
from ordered_purchases
where row_id between ct/2.0 and ct/2.0 + 1;
提出情報
提出日時2022/12/09 18:58:11
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者stkan08
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
81 MB
データパターン3
AC
77 MB