ソースコード
delete from item
where item_code in(
    
    select item_code from item where stock_management_type = 1
    except select item_code from stock
    
    union all 
    select
        aa.item_code
    from stock as aa
    inner join (
        select
            a.item_code,
            max(julianday(last_delivery_date))
        from stock as a
        where a.last_delivery_date is not null
        group by 1
        having max(julianday(last_delivery_date)) <= julianday('2022-12-01')) as bb
    using(item_code)
    where aa.actual_amt = 0
    )
    
提出情報
提出日時2023/06/17 14:15:18
コンテスト第7回 SQLコンテスト
問題商品整理
受験者miotsukushi0800
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
83 MB
データパターン2
WA
84 MB