mysql 查询数据库所有表行数(数据条数)

  • 语句:
      use information_schema;
      select table_name,table_rows from tables where TABLE_SCHEMA = 'kdum_zh_test' order by 
      table_rows desc;
    

mysql 查询数据库所有表行数(数据条数)

相关文章:

  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2021-05-30
  • 2021-07-30
  • 2021-12-26
  • 2022-12-23
猜你喜欢
  • 2021-11-16
  • 2021-11-27
  • 2021-11-17
  • 2021-10-19
  • 2021-11-17
  • 2021-11-17
相关资源
相似解决方案