ソースコード
delete from
    item
where item_code in(
    select
        I.item_code
    from
        item I
        left join stock S on I.item_code = S.item_code
    where
        S.wh_code is null
        or (S.last_delivery_date <= DATE('2023-06-01', '-6 month') and S.actual_amt = 0)
        and I.stock_management_type = 1
)
提出情報
提出日時2024/06/25 16:02:23
コンテスト第7回 SQLコンテスト
問題商品整理
受験者kntnmn
状態 (詳細)WA
(Wrong Answer: 誤答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
85 MB
データパターン2
WA
84 MB