ソースコード
with tmp as(
select
    pow(POINT - (select AVG(point) from test_results where TEST_ID =100),2) as zansa
from
    TEST_RESULTS
where
    TEST_ID =100
),avg_num as(
select
    avg(point)
from
    TEST_RESULTS
where
    TEST_ID =100 
),stv as(
select
    SQRT(AVG(zansa)) as stv
from
    tmp
)
select
    USER_ID as USER
    ,POINT AS PT
    ,CASE
        WHEN ((POINT - (select * from avg_num))*10)/(select * from stv)+50,1 =< 0 THEN 50
    ELSE ROUND(((POINT - (select * from avg_num))*10)/(select * from stv)+50,1)
    END as DEV_VAL
from
    TEST_RESULTS
where
    TEST_ID =100
order by
    DEV_VAL desc
    ,USER_ID asc
提出情報
提出日時2023/07/24 11:51:10
コンテスト第5回 SQLコンテスト
問題偏差値の算出
受験者mywk
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量88 MB
メッセージ
SQLITE_ERROR: near ",": syntax error
テストケース(通過数/総数)
0/4
状態
メモリ使用量
データパターン1
RE
77 MB
データパターン2
RE
77 MB
データパターン3
RE
88 MB
データパターン4
RE
77 MB