Spec-Zone .ru
спецификации, руководства, описания, API

13.7.5.21. SHOW INDEX Syntax

SHOW {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.

SHOW INDEX returns the following fields:

You can use db_name.tbl_name as an alternative to the tbl_name FROM db_name syntax. These two statements are equivalent:

SHOW INDEX FROM mytable FROM mydb;SHOW INDEX FROM mydb.mytable;

The WHERE clause can be given to select rows using more general conditions, as discussed in Section 19.31, "Extensions to SHOW Statements".

You can also list a table's indexes with the mysqlshow -k db_name tbl_name command.