ソースコード
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 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:45:02
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者stkan08
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量94 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
94 MB
データパターン2
WA
79 MB
データパターン3
WA
83 MB