ソースコード
with
	c as (
		select
			total_value
			,row_number() over(order by total_value) as row_num
			,count(pf_code) over() as num
		from
			convenience
		where
		    survey_year = 2019
		    and kind_code = '100'
	)
	
select
	round(avg(total_value), 0) as SA_MEDIAN
from
	c
where
	cast(num + 1 as real) / 2 - 0.5 <= row_num
	and row_num <= cast(num + 1 as real) / 2 + 0.5
提出情報
提出日時2023/02/17 17:42:14
コンテスト第4回 SQLコンテスト
問題中央値の算出
受験者takahirostone
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
3/3
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB
データパターン3
AC
76 MB