mysql查詢使用空間 查詢MYSQL庫表使用空間

2021-10-18 11:36:24 字數 1381 閱讀 7201

1.檢視所有資料庫各容量大小

select

table_schema as '資料庫',

sum(table_rows) as '記錄數',

sum(truncate(data_length/1024/1024, 2)) as '資料容量(mb)',

sum(truncate(index_length/1024/1024, 2)) as '索引容量(mb)'

from information_schema.tables

group by table_schema

order by sum(data_length) desc, sum(index_length) desc;

2.檢視所有資料庫各表容量大小

select

table_schema as '資料庫',

table_name as '表名',

table_rows as '記錄數',

truncate(data_length/1024/1024, 2) as '資料容量(mb)',

truncate(index_length/1024/1024, 2) as '索引容量(mb)'

from information_schema.tables

order by data_length desc, index_length desc;

3.檢視指定資料庫容量大小

例:檢視mysql庫容量大小

select

table_schema as '資料庫',

sum(table_rows) as '記錄數',

sum(truncate(data_length/1024/1024, 2)) as '資料容量(mb)',

sum(truncate(index_length/1024/1024, 2)) as '索引容量(mb)'

from information_schema.tables

where table_schema='mysql';

4.檢視指定資料庫各表容量大小

例:檢視mysql庫各表容量大小

select

table_schema as '資料庫',

table_name as '表名',

table_rows as '記錄數',

truncate(data_length/1024/1024, 2) as '資料容量(mb)',

truncate(index_length/1024/1024, 2) as '索引容量(mb)'

from information_schema.tables

where table_schema='mysql'

order by data_length desc, index_length desc;

MySQL 空間計算 空間查詢

一 前言 mysql實施了ogc建議的具有geometry型別的sql環境的乙個子集。該術語指的是用一組集合型別擴充套件的環境。具有幾何值的sql列是作為擁有集合型別的列實施的。該規範描述了sql幾何型別集合,以及作用在這些型別上用於建立和分析幾何值的函式。關於mysql空間儲存和查詢的概念介紹,可...

MySql 表空間查詢

show variableslike datadir 查所有資料庫占用空間大小 select table schema,concat truncate sum data length 1024 1024,2 mb as data size,concat truncate sum index leng...

MySQL的空間查詢

mysql實施了ogc建議的具有geometry型別的sql環境的乙個子集。該術語指的是用一組集合型別擴充套件的環境。具有幾何值的sql列是作為擁有集合型別的列實施的。該規範描述了sql幾何型別集合,以及作用在這些型別上用於建立和分析幾何值的函式。關於mysql空間儲存和查詢的概念介紹,可以參考這篇...