摘要: # 查询数据库中每个库的数据量 SELECT table_schema AS "Database", SUM(data_length + index_length) / 1024 / 1024 AS "Size (MB)" FROM information_schema.TABLES GROUP B 阅读全文
posted @ 2023-11-14 11:25 东峰叵,com 阅读(37) 评论(0) 推荐(0)