xzhg

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

use information_schema;

select table_name,table_rows from tables

where TABLE_SCHEMA = \'testdb\'

order by table_rows desc;

分类:

技术点:

相关文章:

  • 2021-08-21
  • 2021-10-19
猜你喜欢
  • 2021-11-17
  • 2021-12-09
  • 2022-03-09
相关资源
相似解决方案