【mysql】索引总结

检查索引关键字:

  • explain

  • explain select * from emp where asl > 1000\G
    

官网文档:

  • https://dev.mysql.com/doc/refman/5.7/en/
    【mysql】索引总结_第1张图片

  • id:选择标识符

  • select_type:表示查询的类型。

  • table:输出结果集的表

  • partitions:匹配的分区

  • type:表示表的连接类型

  • possible_keys:表示查询时,可能使用的索引

  • key:表示实际使用的索引

    • PRI 主键约束UNI 唯一约束MUL 可以重复
  • key_len:索引字段的长度

  • ref:列与索引的比较

你可能感兴趣的:(数据库,mysql,数据库,java)