# 安企CMS一键删除 待发布文章sql命令

*Published:* 2024-11-19
*Author:* 客服001

#### 温馨提醒

如果文章内容或图片资源失效，请留言反馈，我们会及时处理，谢谢

本文最后更新于2024年11月19日，已超过 180天没有更新



SQL命令如下：

```
delete from archive_drafts where id > 0;
delete from archive_data where id not in (select id from archives);
delete from archive_flags where archive_id not in (select id from archives);
delete from tag_data where item_id not in (select id from archives);
```