use information_schema
select table_name,table_rows from tables
where TABLE_SCHEMA = '数据库名'
order by table_rows desc
工具/材料:Management Studio。
1、首先在桌面上,点击“Management Studio”图标。
2、然后在该界面中,点击“新建查询”按钮。
3、之后在该界面中,查询第一行的SQL语句“select top 1 * from myAudit”。
4、接着在该界面中,点击“执行”按钮。
5、最后在该界面中,结果窗口里显示数据表的第一行数据。
mysql 数据列表查询以及统计另外个表的记录行数可以实现
use information_schema
select table_name,table_rows from tables
where TABLE_SCHEMA = '数据库名'
order by table_rows desc
查询出来的是每张表的行数
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)