1、查詢整個(gè)mysql數(shù)據(jù)庫(kù),整個(gè)庫(kù)的大??;單位轉(zhuǎn)換為MB。
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供淮安區(qū)網(wǎng)站建設(shè)、淮安區(qū)做網(wǎng)站、淮安區(qū)網(wǎng)站設(shè)計(jì)、淮安區(qū)網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、淮安區(qū)企業(yè)網(wǎng)站模板建站服務(wù),10多年淮安區(qū)做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data? from information_schema.TABLES
2、查詢mysql數(shù)據(jù)庫(kù),某個(gè)庫(kù)的大?。?/p>
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data
from information_schema.TABLES
where table_schema = 'testdb'
3、查看庫(kù)中某個(gè)表的大小;
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';
4、查看mysql庫(kù)中,test開(kāi)頭的表,所有存儲(chǔ)大小;
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%';
1、進(jìn)去指定schema 數(shù)據(jù)庫(kù)(存放了其他的數(shù)據(jù)庫(kù)的信息)\x0d\x0ause information_schema\x0d\x0a2、查詢所有數(shù)據(jù)的大小\x0d\x0aselect concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES\x0d\x0a3、查看指定數(shù)據(jù)庫(kù)的大小\x0d\x0a比如說(shuō) 數(shù)據(jù)庫(kù)apoyl\x0d\x0aselect concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES where table_schema='apoyl';\x0d\x0a4、查看指定數(shù)據(jù)庫(kù)的表的大小\x0d\x0a比如說(shuō) 數(shù)據(jù)庫(kù)apoyl 中apoyl_test表\x0d\x0aselect concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES where table_schema='apoyl' and table_name='apoyl_test';\x0d\x0a整完了,有興趣的可以試哈哦!挺使用哈\x0d\x0a網(wǎng)站找的,都是正解
1.查看mysql數(shù)據(jù)庫(kù)大小
SELECT
sum(DATA_LENGTH)+sum(INDEX_LENGTH)
FROM
information_schema.TABLES
where
TABLE_SCHEMA='數(shù)據(jù)庫(kù)名';
得到的結(jié)果是以字節(jié)為單位,除1024為K,除1048576(=1024*1024)為M。
2.查看表的最后mysql修改時(shí)間
select
TABLE_NAME,UPDATE_TIME
from
INFORMATION_SCHEMA.tables
where
TABLE_SCHEMA='數(shù)據(jù)庫(kù)名';
可以通過(guò)查看數(shù)據(jù)庫(kù)中表的mysql修改時(shí)間,來(lái)確定mysql數(shù)據(jù)庫(kù)是否已經(jīng)長(zhǎng)期不再使用。
1、進(jìn)入information_schema 數(shù)據(jù)庫(kù)(存放了其他的數(shù)據(jù)庫(kù)的信息)
use information_schema;
2、查詢所有數(shù)據(jù)的大?。?/p>
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;
3、查看指定數(shù)據(jù)庫(kù)的大?。?/p>
比如查看數(shù)據(jù)庫(kù)home的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home';
4、查看指定數(shù)據(jù)庫(kù)的某個(gè)表的大小
比如查看數(shù)據(jù)庫(kù)home中 members 表的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home' and table_name='members';
字符串比較大小不是比較長(zhǎng)短
從第一個(gè)字符開(kāi)始比較,相同相等,遇到不同就比較出來(lái)了abc,根據(jù)ascii碼比較的
abcdabcde
1、進(jìn)去指定schema
數(shù)據(jù)庫(kù)(存放了其他的數(shù)據(jù)庫(kù)的信息)
use
information_schema
2、查詢所有數(shù)據(jù)的大小
select
concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')
as
data
from
TABLES
3、查看指定數(shù)據(jù)庫(kù)的大小
比如說(shuō)
數(shù)據(jù)庫(kù)apoyl
select
concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')
as
data
from
TABLES
where
table_schema='apoyl';
4、查看指定數(shù)據(jù)庫(kù)的表的大小
比如說(shuō)
數(shù)據(jù)庫(kù)apoyl
中apoyl_test表
select
concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')
as
data
from
TABLES
where
table_schema='apoyl'
and
table_name='apoyl_test';
整完了,有興趣的可以試哈哦!挺使用哈