标签:order div 大小 mysq form 时间 sel ble nbsp
SELECT
TABLE_NAME,
UPDATE_TIME
FROM
INFORMATION_SCHEMA. TABLES
WHERE
TABLE_SCHEMA = ‘数据库名‘;
大小
select TABLE_NAME, concat(truncate(data_length/1024/1024,2),‘ MB‘) as data_size,
concat(truncate(index_length/1024/1024,2),‘ MB‘) as index_size
from information_schema.tables where TABLE_SCHEMA = ‘数据库名‘
group by TABLE_NAME
order by data_length desc;
感谢老男孩郭导
标签:order div 大小 mysq form 时间 sel ble nbsp
原文地址:https://www.cnblogs.com/zdqc/p/9505476.html