コンテストの制限時間が終了しました。
以降も提出を行うことができますが、順位集計には反映されません。
以降も提出を行うことができますが、順位集計には反映されません。
ソースコード
with t as (
select item_code, max(coalesce(last_delivery_date, "2023-12-01")) as z, sum(actual_amt) as y
from stock
group by item_code
)
delete
from item
where stock_management_type=1
and item_code not in (select item_code from t where z <= "2023-01-01" and y = 0)
提出情報
提出日時 | 2023/08/20 23:47:14 |
コンテスト | 第7回 SQLコンテスト |
問題 | 商品整理 |
受験者 | tabr |
状態 (詳細) | WA (Wrong Answer: 誤答) |
メモリ使用量 | 92 MB |
メッセージ
テストケース(通過数/総数)
0/2
状態
メモリ使用量
データパターン1
WA
87 MB
データパターン2
WA
92 MB