ソースコード
select 
user_id as USER
,point as PT
,case when hensa = 0
    then 50
    else round(((point - ave)*10)/hensa+50,1)
end as DEV_VAL
from test_results
inner join (
    select --標準偏差
    sqrt(avg((point - ave)*(point - ave))) as hensa
    from test_results
    inner join (
        select
        avg(point) as ave
        from test_results
        where test_id = '100'
    )
    where test_id = '100'
)
inner join (
    select
    avg(point) as ave
    from test_results
    where test_id = '100'
)
where test_id = '100'
order by DEV_VAL desc,user_id
提出情報
提出日時2024/05/17 09:49:12
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者HamamatsuUnagi
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
85 MB
データパターン3
AC
85 MB
データパターン4
AC
85 MB