如何查看我的数据库是否有索引?

如果是特定的桌子呢?


当前回答

要查看已创建的索引,请使用

SHOW INDEX from your_table_name;

查看表上的所有索引(由DB和您创建)

SHOW EXTENDED INDEX from your_table_name;

其他回答

查询数据库中所有已禁用的索引

SELECT INDEX_SCHEMA, COLUMN_NAME, COMMENT 
FROM information_schema.statistics
WHERE table_schema = 'mydb'
AND COMMENT = 'disabled'

如果我们知道下面的索引名,我们可以直接看到表上的索引:

Select * from all_indexes where index_name= 'your index'

在我的例子中,这适用于在对应的表中获取索引字段的表名和列名。

SELECT TABLE_NAME , COLUMN_NAME, COMMENT 
FROM information_schema.statistics
WHERE table_schema = 'database_name';

您可以在MySQL工作台中检查您的索引。在性能报告选项卡下,您可以看到系统上所有已使用的索引和未使用的索引。或者可以触发查询。

select * from sys.schema_index_statistics;
select
    table_name,
    index_name,
    seq_in_index,
    column_name,
    non_unique,
    index_type,
    comment
from
    information_schema.statistics
where 1=1
    and table_schema = 'my_schema'
    and table_name = 'my_table'
order by 1,2,3,4,5,6