ソースコード
delete from item
where item_code in(
    select 
    item_code
    from item
    where STOCK_MANAGEMENT_TYPE=1
    and item_code not in (select item_code from stock)
    union
    select
    i.item_code
    from item as i
    inner join stock as s
    on i.item_code = s.item_code
    where STOCK_MANAGEMENT_TYPE=1
    and last_delivery_date is not null
    group by s.item_code
    having max(last_delivery_date) <=  '2022-12-01'
    and max(actual_amt)=0
)
提出情報
提出日時2024/05/30 10:43:50
コンテスト第7回 SQLコンテスト
問題商品整理
受験者HamamatsuUnagi
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
WA
85 MB