数据库初始化脚本(用 truncate 命令一键清空某个数据库中全部数据表数据)

发布时间:2024年01月05日

数据库初始化脚本(用 truncate 命令一键清空某个数据库中全部数据表数据)

在开发中,当数据表结构有变动或者数据库中有脏数据时,想要清空数据表中的数据重新来过,数据表一张接着一张地清空数据比较麻烦,现在只需两步便可以清空数据库中全部数据表数据。

1.执行下面的sql语句生成“清空数据库的sql脚本”

select GROUP_CONCAT(CONCAT('truncate TABLE ',table_schema,'.',TABLE_NAME, ';')separator '')
from INFORMATION_SCHEMA.TABLES where table_schema in ('数据库名') and table_name like
'%模糊表名%'

例如我想清空earthwire数据库下的全部数据表,可以执行以下语句生成一个sql脚本
在这里插入图片描述
生成的能够“清空数据库的sql脚本”如下:

truncate TABLE earthwire.t_camera;
truncate TABLE earthwire.t_earthwire;
truncate TABLE earthwire.t_earthwire_device;
truncate TABLE earthwire.t_earthwire_record;
truncate TABLE earthwire.t_history_task;
truncate TABLE earthwire.t_picture;
truncate TABLE earthwire.t_system_configuration;
truncate TABLE earthwire.t_task;
truncate TABLE earthwire.t_task_device;

2.执行“清空数据库的sql脚本”

在这里插入图片描述
执行完毕后,刷新数据库就会发现数据库空空如也啦

文章来源:https://blog.csdn.net/weixin_44330367/article/details/135405220
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。