ソースコード
delete from item where item.item_code in(
select
  a.item_code as a
from
 item a
 left join stock b
   on a.ITEM_CODE = b.ITEM_CODE
group by
  a.item_code
having  datetime('2023-06-01', '-6 months') >= MAX(LAST_DELIVERY_DATE)
and STOCK_MANAGEMENT_TYPE = '1'
and ACTUAL_AMT = 0
union all
select
  a.item_code as a
from
 item a
 left join stock b
   on a.ITEM_CODE = b.ITEM_CODE
where
  not exists(select * from stock s where s.item_code = a.item_code)
and
  STOCK_MANAGEMENT_TYPE = '1'
);
提出情報
提出日時2023/06/16 19:20:50
コンテスト第7回 SQLコンテスト
問題商品整理
受験者ryuishi
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量81 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
79 MB
データパターン2
WA
81 MB