ソースコード
with stock_a as (
select item_code,ACTUAL_AMT
from stock
where ( LAST_DELIVERY_DATE >= '2022-12-01' or LAST_DELIVERY_DATE is null )
or ACTUAL_AMT != 0 )
delete from item as i
where not EXISTS (
select sa.item_code from stock_a as sa
where sa.item_code = i.item_code)
and i.STOCK_MANAGEMENT_TYPE = 1 
提出情報
提出日時2023/06/16 14:29:11
コンテスト第7回 SQLコンテスト
問題商品整理
受験者KT04
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量97 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
97 MB
データパターン2
WA
96 MB