ソースコード
delete from item where stock_management_type = 1 and not exists(
    select item_code
    from stock
    where stock.item_code = item.item_code
)
or exists(
    select item_code
    from stock
    where stock.item_code = item.item_code
    group by item_code
    having MAX(IFNULL(LAST_DELIVERY_DATE, '2999-12-31')) <= DATE ('2023-06-01', '-6 months') 
    and SUM(ACTUAL_AMT) = 0
);
提出情報
提出日時2023/07/25 15:42:04
コンテスト第7回 SQLコンテスト
問題商品整理
受験者InakaMon
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量93 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
93 MB
データパターン2
AC
93 MB