ソースコード
select i.item_code from item as i
    join stock as s on i.item_code = s.item_code
    where s.ACTUAL_AMT = 0
    group by i.item_code
    having max(s.LAST_DELIVERY_DATE) <= '2023-01-01';

delete from item
where STOCK_MANAGEMENT_TYPE = 1
AND item_code in (
    select i.item_code from item as i
    join stock as s on i.item_code = s.item_code
    where s.ACTUAL_AMT = 0
    group by i.item_code
    having max(s.LAST_DELIVERY_DATE) <= '2023-01-01'
)
or item_code not in (select s.item_code from stock s);
提出情報
提出日時2023/06/24 14:57:35
コンテスト第7回 SQLコンテスト
問題商品整理
受験者yyyyMMddT
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
78 MB