1.查询数据库中所有表的数据量,并排序
USE information_schema;
SELECT table_name,table_rows FROM TABLES WHERE table_schema = "oms" ORDER BY table_rows DESC;
2.快速清除某张表数据
TRUNCATE t_user (表名)
3.source 导入数据
source D:\db.sql;
标签:表名 数据 数据库 快速 select where ext body orm
1.查询数据库中所有表的数据量,并排序
USE information_schema;
source D:\db.sql;
标签:表名 数据 数据库 快速 select where ext body orm
原文地址:https://www.cnblogs.com/monjeo/p/8358189.html