ソースコード
delete from ITEM as I
where not exists 
        (select * from STOCK as S
            where I.ITEM_CODE=S.ITEM_CODE)
    and STOCK_MANAGEMENT_TYPE=1
;

delete from ITEM as I
where exists
    (select
        ITEM_CODE
    from STOCK as S
    where I.ITEM_CODE=S.ITEM_CODE
    group by S.ITEM_CODE
    having 
        max(LAST_DELIVERY_DATE)<='2022-12-01'
        and sum(ACTUAL_AMT)=0
    )
    and STOCK_MANAGEMENT_TYPE=1
;
提出情報
提出日時2024/09/29 16:34:48
コンテスト第7回 SQLコンテスト
問題商品整理
受験者poapoa1010
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量84 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
83 MB
データパターン2
AC
84 MB