ソースコード
delete from 
    ITEM as it
where
    STOCK_MANAGEMENT_TYPE = 1
    and
    not exists(
        select
            it.ITEM_CODE
        from 
            STOCK as st
        where 
            it.ITEM_CODE = ST.ITEM_CODE
    )
    or 
    exists(
        select
            ITEM_CODE
        from 
            STOCK as st
        where
            it.ITEM_CODE = ST.ITEM_CODE 
        group by
            ITEM_CODE
        HAVING
            max(ifnull(LAST_DELIVERY_DATE,'2999-12-31')) <= date('2023-06-01','-6 MONTH') and sum(ACTUAL_AMT) = 0 
    )
;
提出情報
提出日時2024/07/26 11:25:25
コンテスト第7回 SQLコンテスト
問題商品整理
受験者asano
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
AC
83 MB