#倒序查询数据库【各表记录数】
use information_schema;
select table_name,table_rows from tables where TABLE_SCHEMA = '数据库名' order by 
table_rows desc;

 

相关文章:

  • 2021-08-24
  • 2021-11-27
  • 2021-09-29
  • 2021-11-23
  • 2021-11-23
  • 2022-12-23
猜你喜欢
  • 2022-02-19
  • 2021-12-06
  • 2022-12-23
  • 2021-11-26
  • 2021-09-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案