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