查询数据库的当前使用率 1. 查询当前数据库的总存储空间和已使用空间 SELECT table_schema ASDatabase, table_name, table_rows ASRows, SUM(data_length + index_length) ASTotalStorage, ……