Home  >  Q&A  >  body text

mysql - 「Using where; Using index」和「Using index」 区别是什么

当我们在MySQL中通过EXPLAIN查看SQL时,观察Extra列会发现,有时候显示「Using index」;还有时候显示「Using where; Using index」,具体区别是什么?

黄舟黄舟2743 days ago813

reply all(2)I'll reply

  • 黄舟

    黄舟2017-04-17 13:15:51

    using index is a covering index, which means that your query statement can get results only by querying the information in the index. using where means you need to query the data stored in the disk, which will be much slower

    reply
    0
  • 高洛峰

    高洛峰2017-04-17 13:15:51

    MySQL官方手册解释

    Using index
    The column information is retrieved from the table using only information in the index tree without having to do an additional seek to read the actual row. This strategy can be used when the query uses only columns that are part of a single index.

    Using where
    A WHERE clause is used to restrict which rows to match against the next table or send to the client. Unless you specifically intend to fetch or examine all rows from the table, you may have something wrong in your query if the Extra value is not Using where and the table join type is ALL or index.

    得出结果

    Using index不读数据文件,只从索引文件获取数据
    Using where过滤元组和是否读取数据文件或索引文件没有关系

    MySQL官方手册 Using index

    If the Extra column also says Using where, it means the index is being used to perform lookups of key values. Without Using where, the optimizer may be reading the index to avoid reading data rows but not using it for lookups. For example, if the index is a covering index for the query, the optimizer may scan it without using it for lookups.

    所以有朋友如此理解

    1 没有Using where只有Using index:则不读数据文件,所有字段都可以从索引上获得(Without Using where, the optimizer may be reading the index to avoid reading data rows but not using it for lookups)

    2 同时有Using where和Using index:因为“Without Using where...”这句上下文,则意味着同时有Using where和Using index则一定需要读取数据文件

    结论
    Using where只是过滤元组,和是否读取数据文件或索引文件没有关系

    reply
    0
  • Cancelreply