ソースコード
delete from item

where ITEM_CODE in
(

select
item.ITEM_CODE 


from item 
left outer join stock
on item.item_code = stock.item_code

where 
item.STOCK_MANAGEMENT_TYPE = 1

and 
stock.item_code is null

;

)


;


delete from item

where ITEM_CODE in
(

select
item.ITEM_CODE 


from item 
left outer join stock
on item.item_code = stock.item_code

where 
item.STOCK_MANAGEMENT_TYPE = 1

  and 
  STOCK.ACTUAL_AMT = 0

group by item.item_code

having max(STOCK.LAST_DELIVERY_DATE) <= '2022-12-01'


;
);
提出情報
提出日時2023/06/18 14:32:45
コンテスト第7回 SQLコンテスト
問題商品整理
受験者asuka
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量80 MB
メッセージ
SQLITE_ERROR: incomplete input
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
80 MB
データパターン2
RE
79 MB