ソースコード
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<"2023-01-01" and st.actual_amt=0))
        and it.stock_management_type=1
)
;
提出情報
提出日時2023/06/18 17:21:45
コンテスト第7回 SQLコンテスト
問題商品整理
受験者kntnmn
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量78 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
78 MB
データパターン2
WA
78 MB