ソースコード
delete from item
where stock_management_type = 1 
and item_code not in ( select item_code from stock where stock.item_code = item.item_code )
or item_code in ( 
    select item_code from stock 
        where stock.item_code = item.item_code
        group by item_code    
        having max(ifnull(last_delivery_date, '2999-01-01')) <= date('2023-06-01','-6 months')
        and actual_amt = 0
)
提出情報
提出日時2024/04/10 15:35:52
コンテスト第7回 SQLコンテスト
問題商品整理
受験者hmasa
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
85 MB