首页 > 数据库 >mysql查看数据库和表使用空间

mysql查看数据库和表使用空间

时间:2023-01-13 22:37:32浏览次数:47  
标签:1024 数据库 和表 server user mysql table 小S schema


– 1.切换

USE information_schema;

– 2.查看数据库使用大小

SELECT
concat(
round(
sum(data_length / 1024 / 1024),
2
),
'MB'
) AS DATA
FROM
TABLES
WHERE
table_schema = 'user_server';

– 3.查看表使用大小

SELECT
concat(
round(
sum(data_length / 1024 / 1024),
2
),
'MB'
) AS DATA
FROM
TABLES
WHERE
table_schema = 'user_server'
AND table_name = 'log_info';


标签:1024,数据库,和表,server,user,mysql,table,小S,schema
From: https://blog.51cto.com/u_15936016/6006745

相关文章