ソースコード
with t1 as (
 select
  TOTAL_VALUE,
  row_number() over (order by TOTAL_VALUE) 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
 case
  when count(*) % 2 = 0 then
   (select round(avg(TOTAL_VALUE)) as median from t1 where row_id between ct/2.0 and ct/2.0 + 1)
  else
   (select TOTAL_VALUE as median from t1 where row_id = round(ct/2.0))
  end as "SA_MEDIAN"
from t1
;
提出情報
提出日時2022/12/11 21:21:02
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者SKT0205
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量91 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
91 MB
データパターン3
AC
80 MB