ソースコード
delete from item
where item_code in
(
select item_code
from
(
select item_code 
from item as A
where  not exists(select * from stock as B where A.item_code = B.item_code)

union all

select A.item_code
from item as A
inner join stock as B
on A.item_code = B.item_code
and A.STOCK_MANAGEMENT_TYPE = 1
where B.ACTUAL_AMT = 0
group by A.item_code
having (julianday(date('2023-06-01')) - julianday(max(B.last_delivery_date))) >= 180
)
)
;
提出情報
提出日時2023/06/17 08:19:48
コンテスト第7回 SQLコンテスト
問題商品整理
受験者kjmta
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
77 MB
データパターン2
WA
78 MB