分析mysql索引信息及空间占用
查询索引信息
show index from db.table;
select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,CARDINALITY from information_schema.STATISTICS iss
where iss.table_name='table';
查询表及索引占用空间
select * from information_schema.TABLES
where information_schema.TABLES.TABLE_SCHEMA='db' and information_schema.TABLES.TABLE_NAME='table'
参考
https://dev.mysql.com/doc/refman/8.0/en/show-index.html
13.7.7.22 SHOW INDEX Statement
SHOW [EXTENDED] {INDEX | INDEXES | KEYS}
{FROM | IN} tbl_name
[{FROM | IN} db_name]
[WHERE expr]
SHOW INDEX returns table index information. The format resembles that of the SQLStatistics call in ODBC. This statement requires some privilege for any column in the table.
mysql> SHOW INDEX FROM City\G
*************************** 1. row ***************************
Table: city
Non_unique: 0
Key_name: PRIMARY
Seq_in_index: 1
Column_name: ID
Collation: A
Cardinality: 4188
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
Visible: YES
Expression: NULL
*************************** 2. row ***************************
Table: city
Non_unique: 1
Key_name: CountryCode
Seq_in_index: 1
Column_name: CountryCode
Collation: A
Cardinality: 232
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
Visible: YES
Expression: NULL
An alternative to syntax is tbl_name FROM db_namedb_name.tbl_name. These two statements are equivalent:
SHOW INDEX FROM mytable FROM mydb;
SHOW INDEX FROM mydb.mytable;
The optional EXTENDED keyword causes the output to include information about hidden indexes that MySQL uses internally and are not accessible by users.
The WHERE clause can be given to select rows using more general conditions, as discussed in Section 25.49, “Extensions to SHOW Statements”.
SHOW INDEX returns the following fields:
-
TableThe name of the table.
-
Non_unique0 if the index cannot contain duplicates, 1 if it can.
-
Key_nameThe name of the index. If the index is the primary key, the name is always
PRIMARY. -
Seq_in_indexThe column sequence number in the index, starting with 1.
-
Column_nameThe column name. See also the description for the
Expressioncolumn. -
CollationHow the column is sorted in the index. This can have values
A(ascending),D(descending), orNULL(not sorted). -
CardinalityAn estimate of the number of unique values in the index. To update this number, run
ANALYZE TABLEor (forMyISAMtables) myisamchk -a.Cardinalityis counted based on statistics stored as integers, so the value is not necessarily exact even for small tables. The higher the cardinality, the greater the chance that MySQL uses the index when doing joins. -
Sub_partThe index prefix. That is, the number of indexed characters if the column is only partly indexed,
NULLif the entire column is indexed.NotePrefix limits are measured in bytes. However, prefix lengths for index specifications in
CREATE TABLE,ALTER TABLE, andCREATE INDEXstatements are interpreted as number of characters for nonbinary string types (CHAR,VARCHAR,TEXT) and number of bytes for binary string types (BINARY,VARBINARY,BLOB). Take this into account when specifying a prefix length for a nonbinary string column that uses a multibyte character set.For additional information about index prefixes, see Section 8.3.5, “Column Indexes”, and Section 13.1.15, “CREATE INDEX Statement”.
-
PackedIndicates how the key is packed.
NULLif it is not. -
NullContains
YESif the column may containNULLvalues and''if not. -
Index_typeThe index method used (
BTREE,FULLTEXT,HASH,RTREE). -
CommentInformation about the index not described in its own column, such as
disabledif the index is disabled. -
Index_commentAny comment provided for the index with a
COMMENTattribute when the index was created. -
VisibleWhether the index is visible to the optimizer. See Section 8.3.12, “Invisible Indexes”.
-
ExpressionMySQL 8.0.13 and higher supports functional key parts (see Functional Key Parts), which affects both the
Column_nameandExpressioncolumns:-
For a nonfunctional key part,
Column_nameindicates the column indexed by the key part andExpressionisNULL. -
For a functional key part,
Column_namecolumn isNULLandExpressionindicates the expression for the key part.
-
Information about table indexes is also available from the INFORMATION_SCHEMA STATISTICS table. See Section 25.32, “The INFORMATION_SCHEMA STATISTICS Table”. The extended information about hidden indexes is available only using SHOW EXTENDED INDEX; it cannot be obtained from the STATISTICS table.
You can list a table's indexes with the mysqlshow -k db_name tbl_name command.
https://dev.mysql.com/doc/refman/8.0/en/optimizer-statistics.html
25.32 The INFORMATION_SCHEMA STATISTICS Table
The STATISTICS table provides information about table indexes.
Columns in STATISTICS that represent table statistics hold cached values. The information_schema_stats_expiry system variable defines the period of time before cached table statistics expire. The default is 86400 seconds (24 hours). If there are no cached statistics or statistics have expired, statistics are retrieved from storage engines when querying table statistics columns. To update cached values at any time for a given table, use ANALYZE TABLE. To always retrieve the latest statistics directly from storage engines, set information_schema_stats_expiry=0. For more information, see Section 8.2.3, “Optimizing INFORMATION_SCHEMA Queries”.
If the innodb_read_only system variable is enabled, ANALYZE TABLE may fail because it cannot update statistics tables in the data dictionary, which use InnoDB. For ANALYZE TABLE operations that update the key distribution, failure may occur even if the operation updates the table itself (for example, if it is a MyISAM table). To obtain the updated distribution statistics, set information_schema_stats_expiry=0.
The STATISTICS table has these columns:
-
TABLE_CATALOGThe name of the catalog to which the table containing the index belongs. This value is always
def. -
TABLE_SCHEMAThe name of the schema (database) to which the table containing the index belongs.
-
TABLE_NAMEThe name of the table containing the index.
-
NON_UNIQUE0 if the index cannot contain duplicates, 1 if it can.
-
INDEX_SCHEMAThe name of the schema (database) to which the index belongs.
-
INDEX_NAMEThe name of the index. If the index is the primary key, the name is always
PRIMARY. -
SEQ_IN_INDEXThe column sequence number in the index, starting with 1.
-
COLUMN_NAMEThe column name. See also the description for the
EXPRESSIONcolumn. -
COLLATIONHow the column is sorted in the index. This can have values
A(ascending),D(descending), orNULL(not sorted). -
CARDINALITYAn estimate of the number of unique values in the index. To update this number, run
ANALYZE TABLEor (forMyISAMtables) myisamchk -a.CARDINALITYis counted based on statistics stored as integers, so the value is not necessarily exact even for small tables. The higher the cardinality, the greater the chance that MySQL uses the index when doing joins. -
SUB_PARTThe index prefix. That is, the number of indexed characters if the column is only partly indexed,
NULLif the entire column is indexed.NotePrefix limits are measured in bytes. However, prefix lengths for index specifications in
CREATE TABLE,ALTER TABLE, andCREATE INDEXstatements are interpreted as number of characters for nonbinary string types (CHAR,VARCHAR,TEXT) and number of bytes for binary string types (BINARY,VARBINARY,BLOB). Take this into account when specifying a prefix length for a nonbinary string column that uses a multibyte character set.For additional information about index prefixes, see Section 8.3.5, “Column Indexes”, and Section 13.1.15, “CREATE INDEX Statement”.
-
PACKEDIndicates how the key is packed.
NULLif it is not. -
NULLABLEContains
YESif the column may containNULLvalues and''if not. -
INDEX_TYPEThe index method used (
BTREE,FULLTEXT,HASH,RTREE). -
COMMENTInformation about the index not described in its own column, such as
disabledif the index is disabled. -
INDEX_COMMENTAny comment provided for the index with a
COMMENTattribute when the index was created. -
IS_VISIBLEWhether the index is visible to the optimizer. See Section 8.3.12, “Invisible Indexes”.
-
EXPRESSIONMySQL 8.0.13 and higher supports functional key parts (see Functional Key Parts), which affects both the
COLUMN_NAMEandEXPRESSIONcolumns:-
For a nonfunctional key part,
COLUMN_NAMEindicates the column indexed by the key part andEXPRESSIONisNULL. -
For a functional key part,
COLUMN_NAMEcolumn isNULLandEXPRESSIONindicates the expression for the key part.
-
Notes
-
There is no standard
INFORMATION_SCHEMAtable for indexes. The MySQL column list is similar to what SQL Server 2000 returns forsp_statistics, except thatQUALIFIERandOWNERare replaced withCATALOGandSCHEMA, respectively.
Information about table indexes is also available from the SHOW INDEX statement. See Section 13.7.7.22, “SHOW INDEX Statement”. The following statements are equivalent:
SELECT * FROM INFORMATION_SCHEMA.STATISTICS WHERE table_name = 'tbl_name' AND table_schema = 'db_name' SHOW INDEX FROM tbl_name FROM db_name

浙公网安备 33010602011771号