方法1:生成清空所有表的SQL
select CONCAT('TRUNCATE TABLE ',table_name,';') from information_schema.tables where TABLE_SCHEMA = 'db1';
方法二:用navicat,每个表 右键 清空表
本文共 205 字,大约阅读时间需要 1 分钟。
方法1:生成清空所有表的SQL
select CONCAT('TRUNCATE TABLE ',table_name,';') from information_schema.tables where TABLE_SCHEMA = 'db1';
方法二:用navicat,每个表 右键 清空表
转载于:https://www.cnblogs.com/aishangyizhihu/p/10910048.html