ソースコード
delete from ITEM as it
where 
    STOCK_MANAGEMENT_TYPE = 1 and
    not exists (select ITEM_CODE from STOCK as st where it.ITEM_CODE = st.ITEM_CODE) or
    exists (select ITEM_CODE from STOCK as st where it.ITEM_CODE = st.ITEM_CODE group by ITEM_CODE
            having max(ifnull(LAST_DELIVERY_DATE,'9999-12-12')) <= date('2023-06-01', '-6 months') and sum(ACTUAL_AMT) = 0);
提出情報
提出日時2024/07/16 11:45:24
コンテスト第7回 SQLコンテスト
問題商品整理
受験者asano
状態 (詳細)AC
(Accepted: 正答)
メモリ使用量85 MB
メッセージ
テストケース(通過数/総数)
2/2
状態
メモリ使用量
データパターン1
AC
85 MB
データパターン2
AC
84 MB