ソースコード
with base as (
select
  TOTAL_VALUE
 ,row_number() over(order by main.TOTAL_VALUE asc) as rank
from
  CONVENIENCE as main
where
  SURVEY_YEAR = 2019
  and KIND_CODE = '100'
)
, base2 as (
select
  TOTAL_VALUE
 ,rank
 ,(select count(1) from base) as cnt
from base
)
select
  round(avg(TOTAL_VALUE)) as SA_MEDIAN
from
  base2
where rank between cnt/2.0 and cnt/2.0 + 1
提出情報
提出日時2022/12/11 22:34:57
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者kon-kitsune
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
76 MB
データパターン3
AC
81 MB