ソースコード

with tmp as (
--最大出荷日が6か月以上前で在庫ゼロ
select item_code as code 
from stock 
group by item_code 
having max(last_delivery_date)<=date('2023-06-01','-6 months') and sum(actual_amt)=0
) 
,tmp1 as (
--stockにないitem
select item_code as CODE 
from item 
where item.item_code not in (select item_code from stock) 
)
delete from item 
where item.STOCK_MANAGEMENT_TYPE=1 
and (item_code in (select code from tmp) 
or item_code in (select code from tmp1));
提出情報
提出日時2023/09/04 19:17:31
コンテスト第7回 SQLコンテスト
問題商品整理
受験者kate
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量77 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
77 MB
データパターン2
AC
76 MB