ソースコード
            delete
            from
                STOCK
            where
            ITEM_CODE =(
            select
                ITEM_CODE
            from
                STOCK
            group by
                STOCK.ITEM_CODE
            having
                max(date(coalesce(LAST_DELIVERY_DATE, '2023-06-01'))) <= date('2023-06-01', '-6 month')
                and sum(ACTUAL_AMT) = 0
            )and exists(select ITEM_CODE from item where STOCK.ITEM_CODE = item.ITEM_CODE and STOCK_MANAGEMENT_TYPE = 1);
            
delete from
    item
where
    (
        ITEM_CODE not in(
            select
                ITEM_CODE
            from
                STOCK
        )
        and STOCK_MANAGEMENT_TYPE = 1
    )
    or (
        ITEM_CODE = (
            select
                ITEM_CODE
            from
                STOCK
            group by
                STOCK.ITEM_CODE
            having
                max(date(coalesce(LAST_DELIVERY_DATE, '2023-06-01'))) <= date('2023-06-01', '-6 month')
                and sum(ACTUAL_AMT) = 0
        )
        and STOCK_MANAGEMENT_TYPE = 1
    );
提出情報
提出日時2023/06/17 02:20:40
コンテスト第7回 SQLコンテスト
問題商品整理
受験者visionary_band
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量76 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
76 MB
データパターン2
WA
76 MB