ソースコード
delete from ITEM 
where
not exists (
select 1 from stock s2
where 
ITEM.item_code = s2.item_code
and 

 ( (s2.LAST_DELIVERY_DATE > datetime('2023-06-01','-6 month')) or
 (s2.LAST_DELIVERY_DATE <= datetime('2023-06-01','-6 month') and ACTUAL_AMT>0)
 or (s2.LAST_DELIVERY_DATE is null)
 )
)

and STOCK_MANAGEMENT_TYPE=1

;
提出情報
提出日時2023/06/18 21:34:00
コンテスト第7回 SQLコンテスト
問題商品整理
受験者noneof383
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
92 MB
データパターン2
AC
84 MB