ソースコード
with TESTID_100 as (
    select USER_ID, POINT
    from TEST_RESULTS
    where TEST_ID = '100'
),
a as (
    select AVG(POINT) as ave
    from TESTID_100
    
),
t as (
    select POINT - ave as diff,
        USER_ID
    from a, TESTID_100
    
),
a1 as (
    select 
        SQRT(AVG(POWER(diff,2))) as ave2
    from t
),
j as (
    select 
        case ave2 when 0 then 50
        else ROUND(((diff * 10) / ave2) + 50, 1)
        end  as waru,
        USER_ID
    from t, a1
)
select t.USER_ID as USER,
    t.POINT as PT,
    j.waru as DEV_VAL
from TESTID_100 t
inner join j using(USER_ID)
order by waru DESC, USER_ID
提出情報
提出日時2023/02/23 16:16:10
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者sgnn724
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
4/4
状態
メモリ使用量
データパターン1
AC
78 MB
データパターン2
AC
77 MB
データパターン3
AC
80 MB
データパターン4
AC
81 MB