1.直接查询指定数据库里所有表的信息 

select * from information_schema.tables
where TABLE_SCHEMA = '数据库'
order by table_rows desc;

 

 2.查询当前数据库里所有表的信息

show table status 

 

相关文章:

  • 2022-12-23
  • 2021-10-19
  • 2022-12-23
  • 2021-08-14
  • 2021-12-14
  • 2021-07-25
  • 2021-10-02
猜你喜欢
  • 2021-11-30
  • 2022-12-23
  • 2021-05-23
  • 2022-02-08
  • 2022-12-23
  • 2022-02-26
  • 2021-12-12
相关资源
相似解决方案