ソースコード
with 
it as (
    select * from item
    where STOCK_MANAGEMENT_TYPE = 1
)
, i1 as (
    select item_code from it i
    where not exists (
        select item_code
        from stock
        where item_code =  i.item_code
    )
)
, i2 as (
    select item_code, max(LAST_DELIVERY_DATE) as ldd, sum(actual_amt) as aa from stock
    group by item_code
)
, i3 as (
    select item_code
    from i2
    where ldd < '2023-12-01'
        and aa = 0
)
delete from item where item_code in(i1, i3)
;
提出情報
提出日時2023/06/18 21:52:13
コンテスト第7回 SQLコンテスト
問題商品整理
受験者eniiiiii_66
状態 (詳細)RE
(Runtime Error: 実行時エラー)
メモリ使用量95 MB
メッセージ
SQLITE_ERROR: no such column: i1
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
RE
80 MB
データパターン2
RE
95 MB