ソースコード
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 not in (select item_code from t where z < "2023-01-01" and y = 0)
)
提出情報
提出日時2023/08/20 23:42:46
コンテスト第7回 SQLコンテスト
問題商品整理
受験者tabr
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
92 MB
データパターン2
WA
87 MB