ソースコード
with a as (
select
    ITEM_CODE 
    ,sum(ACTUAL_AMT) as amt_sum
    ,max(LAST_DELIVERY_DATE) as max_date
from STOCK
where LAST_DELIVERY_DATE is not null
group by ITEM_CODE
)
delete
from ITEM
where 
(
    not exists 
        (select ITEM_CODE 
        from STOCK
        shere STOCK.ITEM_CODE = ITEM.ITEM_CODE)
    or exists 
        (select ITEM_CODE from a
        where max_date <= date('2023-06-01','-6 month')
        and amt_sum = 0)
)
and STOCK_MANAGEMENT_TYPE = 1
提出情報
提出日時2023/06/21 17:03:37
コンテスト第7回 SQLコンテスト
問題商品整理
受験者sato
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量81 MB
メッセージ
SQLITE_ERROR: near "STOCK": syntax error
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
79 MB
データパターン2
RE
81 MB