首頁  >  文章  >  資料庫  >  mysql查詢資料庫的大小

mysql查詢資料庫的大小

PHPz
PHPz原創
2020-09-25 16:12:0016962瀏覽

mysql查詢資料庫的大小的方法:1、查詢整個函式庫的大小,程式碼為【select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')】;2、查詢某個函式庫的大小,程式碼為【from informati】。

mysql查詢資料庫的大小

相關學習推薦:mysql資料庫

mysql查詢資料庫的大小的方法:

1、查詢整個mysql資料庫,整個庫的大小;單位轉換為MB。

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data  from information_schema.TABLES

mysql查詢資料庫的大小

2、查詢mysql資料庫,某個函式庫的大小;

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data
  from information_schema.TABLES
 where table_schema = 'testdb'

mysql查詢資料庫的大小

3、檢視庫中某個表的大小;

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data
  from information_schema.TABLES
 where table_schema = 'testdb'
   and table_name = 'test_a';

mysql查詢資料庫的大小

4、檢視mysql函式庫中,test開頭的表,所有儲存大小;

select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data
  from information_schema.TABLES
 where table_schema = 'testdb'
   and table_name like 'test%';

mysql查詢資料庫的大小##

以上是mysql查詢資料庫的大小的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn