ソースコード
delete from item
where item_code in (

with tmp as (
select
    i.item_code i_code
    ,s.item_code s_code
    ,max(s.last_delivery_date) last_delivery_date
    ,sum(actual_amt) sum_amt
from
    item i left join stock s
    on i.item_code = s.item_code
where
    i.stock_management_type = 1
group by
    i.item_code
)
select
    i_code
from
    tmp
where
    s_code is Null 
    or (last_delivery_date <= '2022-12-31' and sum_amt = 0)

)
;

select * from item;
提出情報
提出日時2024/09/29 08:52:45
コンテスト第7回 SQLコンテスト
問題商品整理
受験者nosh
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
WA
83 MB