在开发中,当数据表结构有变动或者数据库中有脏数据时,想要清空数据表中的数据重新来过,数据表一张接着一张地清空数据比较麻烦,现在只需两步便可以清空数据库中全部数据表数据。
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;
执行完毕后,刷新数据库就会发现数据库空空如也啦