ソースコード
delete from
    ITEM
where
    not exists(
        select
            ITEM_CODE
        from
            STOCK
        where
            ITEM.ITEM_CODE = STOCK.ITEM_CODE
    )
    or 
    exists(
        select
            ITEM_CODE
        from
            STOCK
        where
            ITEM.ITEM_CODE = STOCK.ITEM_CODE
        and LAST_DELIVERY_DATE not null
        and LAST_DELIVERY_DATE <= date('2023-06-01', '-6 months')
        and ACTUAL_AMT = 0
        and ITEM.STOCK_MANAGEMENT_TYPE = 1
    )
提出情報
提出日時2023/06/16 23:56:30
コンテスト第7回 SQLコンテスト
問題商品整理
受験者visionary_band
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量87 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
87 MB
データパターン2
WA
81 MB