ソースコード
with t as (
    select item_code, max(coalesce(last_delivery_date, "2023-12-01")) as z, sum(actual_amt) as y
    from stock
    group by item_code
)
delete
from item 
where stock_management_type=1 
and (item_code not in (select item_code from stock) or
item_code in (select item_code from t where z <= "2022-12-01" and y = 0)
)
提出情報
提出日時2023/08/20 23:51:21
コンテスト第7回 SQLコンテスト
問題商品整理
受験者tabr
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量94 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
80 MB
データパターン2
AC
94 MB