ソースコード
with T as (
    select
        AVG(POINT) as me,
        SQRT(AVG(POINT*POINT)-AVG(POINT)*AVG(POINT)) as std
    from TEST_RESULTS where  TEST_ID='100'
)
select user_id as USER,
       point as PT,
       case when std=0.0 then 50 else round((point - me)*10/std + 50,1) end as DEV_VAL
from TEST_RESULTS, T
where TEST_RESULTS.TEST_ID='100'
order by 3 desc,1

提出情報
提出日時2023/04/16 12:19:35
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者tamurakami
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量79 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
75 MB
データパターン2
AC
74 MB
データパターン3
AC
77 MB
データパターン4
AC
79 MB