ソースコード
delete from item 
select 
  item.*
from item 
left join stock 
  on item.item_code = stock.item_code 
where item.STOCK_MANAGEMENT_TYPE = 1 
  and (stock.item_code is null
  or (stock.last_delivery_date < '2023-01-01'
    and stock.actual_amt = 0)
  )
;
提出情報
提出日時2023/06/19 09:35:11
コンテスト第7回 SQLコンテスト
問題商品整理
受験者hattsuriboy
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量82 MB
メッセージ
SQLITE_ERROR: near "select": syntax error
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
80 MB
データパターン2
RE
82 MB