ソースコード
delete
from
    item
where
    item_code in (
    select
        it.item_code
    from
        item as it
        left outer join stock as st on it.item_code=st.item_code
    where
        (st.wh_code is null
        or (st.last_delivery_date<"2022-12-02" and st.actual_amt=0))
        and it.stock_management_type=1
)
;
提出情報
提出日時2023/06/19 12:32:54
コンテスト第7回 SQLコンテスト
問題商品整理
受験者kntnmn
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量94 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
94 MB
データパターン2
WA
94 MB