ソースコード
with stock_sum as (
select item_code,sum(ACTUAL_AMT) as ACTUAL_AMT ,MAX(ifnull(LAST_DELIVERY_DATE,'2023-06-01')) as LAST_DELIVERY_DATE
from STOCK
group by item_code
),
need_item as (
select item_code,ACTUAL_AMT,LAST_DELIVERY_DATE
from stock_sum
where 
LAST_DELIVERY_DATE >= date('2023-06-01', '-6 months') 
or ( LAST_DELIVERY_DATE <= date('2023-06-01', '-6 months') and ACTUAL_AMT != 0)
or LAST_DELIVERY_DATE is null
 )
-- select * from need_item
delete from item as i
where not EXISTS (
select * from need_item as sa
where sa.item_code = i.item_code)
and i.STOCK_MANAGEMENT_TYPE = 1 
提出情報
提出日時2023/06/16 17:38:04
コンテスト第7回 SQLコンテスト
問題商品整理
受験者KT04
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量95 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
95 MB
データパターン2
WA
79 MB