ソースコード
with ordered_purchases as (
  select
      TOTAL_VALUE,
      row_number() over (order by TOTAL_VALUE) as row_id,
      (select count(1) from CONVENIENCE) 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:54:54
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者stkan08
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量94 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
84 MB
データパターン3
WA
94 MB