ソースコード
delete from ITEM
 where
    (
    item_code not in (select item_code from stock)
    or
    item_code in
        (
        select
            item_code
        from
        (
            select 
                item_code
                ,max(LAST_DELIVERY_DATE) as LAST_DELIVERY_DATE
            from
                stock 
            where ACTUAL_AMT = 0
            group by
                item_code
        )
        where
            LAST_DELIVERY_DATE <= date('2022-11-31')
            and  LAST_DELIVERY_DATE is not null
        )
    )
    and
    STOCK_MANAGEMENT_TYPE = 1;
    
select * from item
提出情報
提出日時2023/08/02 16:33:55
コンテスト第7回 SQLコンテスト
問題商品整理
受験者mywk
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量82 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
82 MB
データパターン2
WA
80 MB