ソースコード
with 
it as (
    select * from item
    where STOCK_MANAGEMENT_TYPE = 1
)
, i1 as (
    select item_code from it i
    where not exists (
        select item_code
        from stock
        where item_code = i.item_code
    )
)
, i2 as (
    select item_code, max(LAST_DELIVERY_DATE) as ldd, sum(actual_amt) as aa from stock
    group by item_code
)
, i3 as (
    select item_code
    from i2
    where ldd < '2022-12-01'
        and aa = 0
)
delete from item
where 
    STOCK_MANAGEMENT_TYPE = 1
    and item_code in (
    select * from i1
    union
    select * from i3
)
;
提出情報
提出日時2023/06/18 22:06:34
コンテスト第7回 SQLコンテスト
問題商品整理
受験者eniiiiii_66
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量95 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
95 MB
データパターン2
WA
91 MB