ソースコード
delete from ITEM as i
where not exists (
    select 1
    from STOCK as s
    where s.ITEM_CODE = i.ITEM_CODE
)
or exists (
    select 1
    from STOCK as s
    where s.ITEM_CODE = i.ITEM_CODE
    and LAST_DELIVERY_DATE is not null
    and i.STOCK_MANAGEMENT_TYPE = 1
    group by s.ITEM_CODE
    having max(s.LAST_DELIVERY_DATE) <= '2023-06-01' - 6
    or s.ACTUAL_AMT = 0
);
提出情報
提出日時2023/06/16 20:38:09
コンテスト第7回 SQLコンテスト
問題商品整理
受験者rare0b
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
77 MB