檢視mysql資料庫大小 表大小和最後修改時間

2021-06-07 04:30:21 字數 650 閱讀 8686

1.檢視資料庫表基本資訊。

select * from information_schema.tables where information_schema.tables.table_schema = '資料庫名' and information_schema.tables.table_name = '表名';

2.檢視mysql資料庫大小

select sum(data_length)+sum(index_length) from information_schema.tables where table_schema='資料庫名';

得到的結果是以位元組為單位,除1024為k,除1048576(=1024*1024)為m。

3.檢視表的最後mysql修改時間

select table_name,update_time from information_schema.tables where table_schema='資料庫名' order by update_time desc limit 1; 

select table_name,update_time from information_schema.tables where table_schema='資料庫名' and information_schema.tables.table_name = '表名'; 

mysql檢視資料庫大小或者表大小

要想知道每個資料庫的大小的話,步驟如下 1 進入information schema 資料庫 存放了資料庫的資訊 use information schema 2 查詢所有資料庫的大小 select concat round sum data length 1024 1024 2 mb as dat...

mysql 檢視資料庫 表 大小

記錄備忘 1 進去指定schema 資料庫 存放了其他的資料庫的資訊 use information schema 2 查詢所有資料的大小 select concat round sum data length 1024 1024 2 mb as data from tables 3 檢視指定資料庫...

MYSQL 檢視資料庫大小以及表的大小

在mysql的information schema資料庫下執行 一 檢視每個資料庫的大小 select table schema,concat round sum data length 1024 1024 2 mb as data from tables group by table schema...