看MySQL資料庫大小

2021-06-15 08:28:10 字數 517 閱讀 6806

1、進去指定schema 資料庫(存放了其他的資料庫的資訊)

use information_schema

2、查詢所有資料的大小

select concat(round(sum(data_length/1024/1024),2),'mb') as data  from tables

3、檢視指定資料庫的大小

比如說 資料庫apoyl

select concat(round(sum(data_length/1024/1024),2),'mb') as data  from tables where table_schema='apoyl';

4、檢視指定資料庫的表的大小

比如說 資料庫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';

mysql資料庫看屬性 MySQL資料庫之列屬性

列屬性 是否為空 是否為空 null 表示字段值可以為null not null字段值不能為空 預設值預設值 如果乙個字段沒有插入值,可以預設插入乙個指定的值 default 關鍵字用來插入預設值 mysql create table stu19 name varchar 20 not null d...

檢視mysql資料庫大小

資料量大的情況下 謹慎使用 mysql會崩潰!資料量大的情況下 謹慎使用 mysql會崩潰!資料量大的情況下 謹慎使用 mysql會崩潰!mysql檢視當前所有的資料庫和索引大小 select table schema,concat truncate sum data length 1024 102...

檢視MySQL資料庫大小

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