最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

mysql表結(jié)構(gòu)表空間和索引的查詢_MySQL

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-09 18:34:47
文檔

mysql表結(jié)構(gòu)表空間和索引的查詢_MySQL

mysql表結(jié)構(gòu)表空間和索引的查詢_MySQL:bitsCN.com mysql表結(jié)構(gòu)表空間和索引的查詢 1.查詢表的結(jié)構(gòu)信息Sql代碼 desc tableName; show columns from tableName; describe tableName 上面的結(jié)果返回的結(jié)果是一樣的。2 查詢表的列信息。Sql代碼 select * from informat
推薦度:
導(dǎo)讀mysql表結(jié)構(gòu)表空間和索引的查詢_MySQL:bitsCN.com mysql表結(jié)構(gòu)表空間和索引的查詢 1.查詢表的結(jié)構(gòu)信息Sql代碼 desc tableName; show columns from tableName; describe tableName 上面的結(jié)果返回的結(jié)果是一樣的。2 查詢表的列信息。Sql代碼 select * from informat

bitsCN.com

mysql表結(jié)構(gòu)表空間和索引的查詢

1.查詢表的結(jié)構(gòu)信息

Sql代碼

desc tableName;

show columns from tableName;

describe tableName

上面的結(jié)果返回的結(jié)果是一樣的。

2 查詢表的列信息。

Sql代碼

select * from

information_schema.columns

where table_name='tableName';

3 查看庫中所有的庫

Sql代碼

SELECT LOWER(schema_name) schema_name

FROM

information_schema.schemata

WHERE

schema_name NOT IN (

'mysql',

'information_schema',

'test'

)

4 查詢某個庫中所有的表

Sql代碼

SELECT table_name, create_time updated_at, table_type, ENGINE, table_rows num_rows, table_comment, CEIL(data_length / 1024 / 1024) store_capacity

FROM

information_schema.TABLES

WHERE table_schema = 'schema_name' AND table_name NOT LIKE 'tmp#_%' ESCAPE '#'

5 查看某一個庫下某一個表的所有字段

Sql代碼

SELECT

lower(column_name) column_name,

ordinal_position position,

column_default dafault_value,

substring(is_nullable, 1, 1) nullable,

column_type data_type,

column_comment,

character_maximum_length data_length,

numeric_precision data_precision,

numeric_scale data_scale

FROM

information_schema.COLUMNS

WHERE

table_schema = 'admin_portal'

AND table_name = 'ap_epiboly_task';

6 查看某一個庫下某一張表的索引

Sql代碼

SELECT DISTINCT

lower(index_name) index_name,

lower(index_type) type

FROM

information_schema.statistics

WHERE

table_schema = 'employees'

AND table_name = 'employees';

7 查看某一個庫下某一個表的注釋

Sql代碼

SELECT

table_comment comments

FROM

information_schema.TABLES

WHERE

table_schema = 'employees'

AND table_name = 'employees';

8

1.查看索引

(1)單位是GB

SELECT CONCAT(ROUND(SUM(index_length)/(1024*1024*1024), 2), ' GB') AS 'Total Index Size' FROM information_schema.TABLES WHERE table_schema LIKE 'test';

+------------------+

| Total Index Size |

+------------------+

| 1.70 GB |

+------------------+

(2)單位是MB

SELECT CONCAT(ROUND(SUM(index_length)/(1024*1024), 2), ' MB') AS 'Total Index Size' FROM information_schema.TABLES WHERE table_schema LIKE 'test';

其中“database”為你所要查看的數(shù)據(jù)庫

2.查看表空間

SELECT CONCAT(ROUND(SUM(data_length)/(1024*1024*1024), 2), ' GB') AS 'Total Data Size'

FROM information_schema.TABLES WHERE table_schema LIKE 'test';

+-----------------+

| Total Data Size |

+-----------------+

| 3.01 GB |

+-----------------+

3.查看數(shù)據(jù)庫中所有表的信息

SELECT CONCAT(table_schema,'.',table_name) AS 'Table Name',

CONCAT(ROUND(table_rows/1000000,2),'M') AS 'Number of Rows',

CONCAT(ROUND(data_length/(1024*1024*1024),2),'G') AS 'Data Size',

CONCAT(ROUND(index_length/(1024*1024*1024),2),'G') AS 'Index Size' ,

CONCAT(ROUND((data_length+index_length)/(1024*1024*1024),2),'G') AS'Total'FROM information_schema.TABLES WHERE table_schema LIKE 'test';

bitsCN.com

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

mysql表結(jié)構(gòu)表空間和索引的查詢_MySQL

mysql表結(jié)構(gòu)表空間和索引的查詢_MySQL:bitsCN.com mysql表結(jié)構(gòu)表空間和索引的查詢 1.查詢表的結(jié)構(gòu)信息Sql代碼 desc tableName; show columns from tableName; describe tableName 上面的結(jié)果返回的結(jié)果是一樣的。2 查詢表的列信息。Sql代碼 select * from informat
推薦度:
標(biāo)簽: 空間 信息 mysql
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top