ソースコード
delete from ITEM as i
where
   i.STOCK_MANAGEMENT_TYPE = 1
   and (
   NOT EXISTS (SELECT distinct ITEM_CODE FROM STOCK as s where i.item_code = s.item_code)
  or
   EXISTS (
   select distinct ITEM_CODE from STOCK as s2
            where
             i.item_code = s2.item_code
             group by s2.item_code 
             having max(LAST_DELIVERY_DATE) < '2023-01-01' and SUM(ACTUAL_AMT) = 0
             ))
提出情報
提出日時2023/06/17 22:41:07
コンテスト第7回 SQLコンテスト
問題商品整理
受験者neve_neve
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
1/2
状態
メモリ使用量
データパターン1
AC
84 MB
データパターン2
WA
84 MB