ソースコード
with s as (
  select 
    item_code, 
    max(last_delivery_date) last_delivery_date, 
    sum(actual_amt) actual_amt 
  from stock 
  group by 1
)

delete from item
where item_code in (
    select i.item_code
    from item i
    left join s on i.item_code = s.item_code
    where i.STOCK_MANAGEMENT_TYPE = 1
    and(
      s.item_code is null
      or
      (
        DATE('2023-06-01', '-6 month') > s.last_delivery_date
        and
        s.actual_amt = 0
      )
     )
)
提出情報
提出日時2023/06/18 08:41:57
コンテスト第7回 SQLコンテスト
問題商品整理
受験者tac0x2a
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量80 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
80 MB
データパターン2
WA
79 MB