输入banner图图片脚本导航/分类

mysql 查看数据库中所有表的记录数

use information_schema;

 


SELECT
t.table_name,
t.table_rows
FROM
TABLES t
WHERE
1 = 1
AND t.table_schema = ‘mysql_database_name‘-- 自己数据的名字
ORDER BY
t.table_rows, t.table_name;

mysql 查看数据库中所有表的记录数

标签: