ソースコード

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