zdqc

mysql> use information_schema;
Database changed

mysql> select concat(round(sum(DATA_LENGTH/1024/1024),2),\'MB\') as data from TABLES
mysql> select concat(round(sum(DATA_LENGTH/1024/1024),2),\'MB\') as data from TABLES where table_schema=\'xxxxx\'

select concat(round(sum(data_length/1024/1024),2),\'MB\') as data from tables where table_schema=\'home\' and table_name=\'members\';

分类:

技术点:

相关文章:

  • 2021-07-09
  • 2021-06-17
  • 2021-12-23
  • 2021-11-29
  • 2022-12-23
  • 2021-06-20
  • 2021-07-31
猜你喜欢
  • 2022-12-23
  • 2021-11-29
  • 2021-09-14
  • 2022-12-23
  • 2022-02-08
  • 2021-11-29
相关资源
相似解决方案