ソースコード
with tmp as (select * from
item inner join stock on item.item_code=stock.item_code
where
stock.LAST_DELIVERY_DATE is null
or 

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

)
delete  from item 
where 
not exists (
select 1 from tmp where tmp.item_code=item.item_code)
提出情報
提出日時2023/06/18 21:33:24
コンテスト第7回 SQLコンテスト
問題商品整理
受験者noneof383
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量92 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
92 MB
データパターン2
WA
84 MB