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