ソースコード
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
                )
        );
提出情報
提出日時2024/05/09 10:55:08
コンテスト第7回 SQLコンテスト
問題商品整理
受験者sjty9561
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量86 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
86 MB
データパターン2
AC
84 MB