ソースコード
update sku as s
set 
std_cost_price = t.std_cost_price
,update_user_name = 'MODIFY'
,user_update_datetime = '2024-08-31 00:00:00'
from
(
    select
        s.goods_code
        ,round(avg(s.std_cost_price) over(partition by s.goods_code)) avg_price
        ,g.std_cost_price std_cost_price
    from
        sku s inner join goods g
        on s.goods_code = g.goods_code
) t
where
    s.goods_code = t.goods_code
and
    t.std_cost_price < t.avg_price
;

select * from sku;
提出情報
提出日時2024/10/04 22:38:55
コンテスト第2回 SQLコンテスト初級編
問題原価更新
受験者nosh
状態 (詳細)TLE
(Time Limit Exceeded: 時間制限オーバー)
メモリ使用量95 MB
メッセージ
テストケース(通過数/総数)
0/3
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
95 MB
データパターン3
TLE
MB