ソースコード
delete from item 
where item_code in (
select 
  item.item_code
from item 
left join stock 
  on item.item_code = stock.item_code 
left join 
(select 
  item_code 
  ,max(last_delivery_date) as max_delv_date
from stock 
group by 1
) as max_date
  on stock.item_code = max_date.item_code 
where item.STOCK_MANAGEMENT_TYPE = 1 
  and (stock.item_code is null
  or ((max_date.max_delv_date < '2022-12-01' or max_delv_date is null )
    and stock.actual_amt = 0)
  )

)
;
提出情報
提出日時2023/06/19 09:53:44
コンテスト第7回 SQLコンテスト
問題商品整理
受験者hattsuriboy
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量90 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
89 MB
データパターン2
WA
90 MB