ソースコード
delete from
    ITEM
where
    item_code in(
        select
            item_code
        from
            stock
        group by
            item_code
        having
            max(actual_amt) = 0
            and max(ifnull(LAST_DELIVERY_DATE,'2023-06-01')) <= date('2023-06-01', '-6 months')
    )
    and STOCK_MANAGEMENT_TYPE = 1;

delete from
    item
where
    item_code not in(
        select
            distinct item_code
        from
            stock
    )
    and STOCK_MANAGEMENT_TYPE = 1;
提出情報
提出日時2024/04/17 20:57:12
コンテスト第7回 SQLコンテスト
問題商品整理
受験者orekwys
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量83 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
82 MB
データパターン2
AC
83 MB