ソースコード
WITH avg AS ( 
    SELECT avg(POINT) as a_point
    from TEST_RESULTS
    where TEST_ID='100'
),
sa as(
select user_id,point,(point - a_point) as s_point,(point - a_point)*10 as ten
from TEST_RESULTS,avg
where TEST_ID='100'
),
bu as (
select sqrt(sum(s_point*s_point)/count(*)) as hyou,count(*) from sa
),
six as (
 select sa.ten/bu.hyou as val,user_id,point from
 sa,bu
)
select user_id,point,round(val+50,2) as dev_val from six
order by 3 desc,1
提出情報
提出日時2023/02/20 10:18:54
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者KT04
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量96 MB
メッセージ
テストケース(通過数/総数)
0/4
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
96 MB
データパターン3
WA
92 MB
データパターン4
WA
96 MB