ソースコード
delete from item 
where item_code in (
select 
  stock.*
from item 
left join stock 
  on item.item_code = stock.item_code 
inner 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'
    -- stock.last_delivery_date < '2022-12-01'
    and stock.actual_amt = 0)
  )
)
;
提出情報
提出日時2023/06/19 09:45:50
コンテスト第7回 SQLコンテスト
問題商品整理
受験者hattsuriboy
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量85 MB
メッセージ
SQLITE_ERROR: sub-select returns 9 columns - expected 1
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
82 MB
データパターン2
RE
85 MB