use information_schema;
select table_name,concat(round(DATA_LENGTH/1024/1024,2),'MB') as data
,concat(round(index_length/1024/1024,2),'MB') as indexweight 
 from TABLES where table_schema='dsideal_db' order by  DATA_LENGTH desc;

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
  • 2022-02-07
  • 2021-09-19
  • 2022-12-23
  • 2021-06-26
猜你喜欢
  • 2021-09-09
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2022-01-21
  • 2021-12-30
  • 2021-10-13
相关资源
相似解决方案