peixue-dev/peidu/Archive/一次性文件/[一次性]清空旧轮播图数据-2026-01-25.sql

22 lines
562 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 清空旧轮播图数据
-- 2026-01-25
-- 目的删除包含旧URL的轮播图准备上传新图片
-- 1. 查看当前轮播图数据
SELECT id, title, image_url, created_time
FROM banner
ORDER BY created_time DESC;
-- 2. 备份(可选)
-- CREATE TABLE banner_backup_20260125 AS SELECT * FROM banner;
-- 3. 删除所有旧轮播图
-- 注意:这会删除所有轮播图数据,请确认后执行
DELETE FROM banner;
-- 4. 重置自增ID可选
ALTER TABLE banner AUTO_INCREMENT = 1;
-- 5. 验证
SELECT COUNT(*) as total FROM banner;