共计 4174 个字符,预计需要花费 11 分钟才能阅读完成。
行业资讯
数据库
MySQL 数据库
oracle index unique scan/index range scan 和 mysql range/const/ref/eq_ref 的区别是什么
这篇文章将为大家详细讲解有关 oracle index unique scan/index range scan 和 mysql range/const/ref/eq_ref 的区别是什么,文章内容质量较高,因此丸趣 TV 小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
关于 oracle index unique scan/index range scan 和 mysql range/const/ref/eq_ref type 的区别
关于 ORACLE index unique scan 和 index range scan 区别在于是否索引是唯一的,如果 = 操作谓词有唯一索引则使用 unique scan 否则则使用 range scan
但是这种定律视乎在 MYSQL 中不在成立
如下执行
kkkm2 id 为主键
mysql explain extended select * from kkkm2 where id=2;
+—-+————-+——-+——-+—————+———+———+——-+——+———-+——-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+—-+————-+——-+——-+—————+———+———+——-+——+———-+——-+
| 1 | SIMPLE | kkkm2 | const | PRIMARY,key_t | PRIMARY | 4 | const | 1 | 100.00 | NULL |
+—-+————-+——-+——-+—————+———+———+——-+——+———-+——-+
1 row in set, 1 warning (0.00 sec)
我们发现他使用了 type const 这个代表是查询一条记录并且进行了转换为了常量
mysql show warnings;
+——-+——+————————————————————————————-+
| Level | Code | Message |
+——-+——+————————————————————————————-+
| Note | 1003 | /* select#1 */ select 2 AS `id`, gaopeng2 AS `name2` from `test`.`kkkm2` where 1 |
+——-+——+————————————————————————————-+
确实如此
但是如果我们进行 UPDATE
mysql explain update kkkm2 set name2= gaopeng1000 where id=1;
+—-+————-+——-+——-+—————+———+———+——-+——+————-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+——-+——-+—————+———+———+——-+——+————-+
| 1 | SIMPLE | kkkm2 | range | PRIMARY,key_t | PRIMARY | 4 | const | 1 | Using where |
+—-+————-+——-+——-+—————+———+———+——-+——+————-+
1 row in set (0.03 sec)
这里问题来了,为什么我明明是主键为什么执行计划是 type 是 range 呢?ORACLE 在这里肯定是 INDEX UNIQUE SCAN,
但是 MYSQL 这里使用 range。
给人的感觉 eq_ref 视乎是更合适的 type,唯一扫描嘛,但是看看文档解释如下:
eq_ref can be used for indexed columns that are compared using the = operator. The comparison
value can be a constant or an expression that uses columns from tables that are read before this
table. In the following examples, MySQL can use an eq_ref join to process ref_table:
SELECT * FROM ref_table,other_table
WHERE ref_table.key_column=other_table.column;
SELECT * FROM ref_table,other_table
WHERE ref_table.key_column_part1=other_table.column
AND ref_table.key_column_part2=1;
这里 MySQL can use an eq_ref join to process ref_table 明确说了 eq_ref 是用于 join 的,对于单表不适用
他用在被驱动表的连接字段有唯一索引的情况下。
而 ref 呢,实际上他也是用于连接用在被驱动表是非唯一索引的情况,并且适用于单表谓词非唯一的情况 如下:
All rows with matching index values are read from this table for each combination of rows from the
previous tables. refis used if the join uses only a left most prefix of the key or if the key is not a
PRIMARY KEY or UNIQUE index (in other words, if the join cannot select a single row based on the
key value). If the key that is used matches only a few rows, this is a good join type.
ref can be used for indexed columns that are compared using the =or = operator. In the
following examples, MySQL can use a ref join to process ref_table:
SELECT * FROM ref_tableWHERE key_column=expr;
SELECT * FROM ref_table,other_table
WHERE ref_table.key_column=other_table.column;
SELECT * FROM ref_table,other_table
WHERE ref_table.key_column_part1=other_table.column
AND ref_table.key_column_part2=1;
如果只考虑 = 操作:
感觉 mysql 的 ref 和 oracle 的 index range scan 类似,不管单表或者 jion 都可以使用,
适用于索引是非唯一的情况。
但是 mysql 的 eq_ref 和 oracle 的 index unique scan 并不同,因为 eq_ref 只会用在 join 的
情况下并且被驱动表是唯一的情况下,在单表谓词查询使用唯一索引的情况 eq_ref 并不会出现,
出现的是 type const 或者 type range
如果 等范围操作,出现的一定是 type range 了,这个和 ORACLE 一样一旦唯一键出现了范围
条件出现的一定是 INDEX RANGE SCAN。
range 描述如下:
Only rows that are in a given range are retrieved, using an index to select the rows. The key column
in the output row indicates which index is used. The key_len contains the longest key part that was
used. The ref column is NULL for this type.
range scan be used when a key column is compared to a constant using any of the =, , , =, ,
=, IS NULL, = , BETWEEN, or IN () operators:
SELECT * FROM tbl_name
WHERE key_column= 10;
SELECT * FROM tbl_name
WHERE key_columnBETWEEN 10 and 20;
关于 oracle index unique scan/index range scan 和 mysql range/const/ref/eq_ref 的区别是什么就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。