文档首页
MySQL 9.0 参考手册
相关文档 下载本手册
PDF (US Ltr) - 40.0Mb
PDF (A4) - 40.1Mb
手册页 (TGZ) - 258.2Kb
手册页 (Zip) - 365.3Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 9.0 参考手册  /  ...  /  schema_redundant_indexes 和 x$schema_flattened_keys 视图

30.4.3.27 schema_redundant_indexes 和 x$schema_flattened_keys 视图

schema_redundant_indexes 视图显示重复其他索引或被其他索引使之冗余的索引。x$schema_flattened_keys 视图是 schema_redundant_indexes 的辅助视图。

在以下列描述中,主索引是指使冗余索引变得冗余的索引。

schema_redundant_indexes 视图包含以下列

  • table_schema

    包含该表的模式。

  • table_name

    包含该索引的表。

  • redundant_index_name

    冗余索引的名称。

  • redundant_index_columns

    冗余索引中列的名称。

  • redundant_index_non_unique

    冗余索引中非唯一列的数量。

  • dominant_index_name

    主索引的名称。

  • dominant_index_columns

    主索引中列的名称。

  • dominant_index_non_unique

    主索引中非唯一列的数量。

  • subpart_exists

    该索引是否只索引列的一部分。

  • sql_drop_index

    用于删除冗余索引的语句。

x$schema_flattened_keys 视图包含以下列

  • table_schema

    包含该表的模式。

  • table_name

    包含该索引的表。

  • index_name

    索引名称。

  • non_unique

    索引中非唯一列的数量。

  • subpart_exists

    该索引是否只索引列的一部分。

  • index_columns

    索引中列的名称。