mysql中聯合索引的使用
在oracle,如果存在一個多列的組合索引,比如a,b,c列上存在一個組合索引,那麼在查詢中如果出現where b=’xx’的情況是可以使用組合索引的,但是mysql是無法使用的,見下面的測試
| big_table | CREATE TABLE big_table
(
TABLE_CATALOG
varchar(512) NOT NULL DEFAULT ”,
TABLE_SCHEMA
varchar(64) NOT NULL DEFAULT ”,
TABLE_NAME
varchar(64) NOT NULL DEFAULT ”,
COLUMN_NAME
varchar(64) NOT NULL DEFAULT ”,
ORDINAL_POSITION
COLUMN_DEFAULT
longtext, IS_NULLABLE
varchar(3) NOT NULL DEFAULT ”, DATA_TYPE
varchar(64) NOT NULL DEFAULT ”, CHARACTER_MAXIMUM_LENGTH
bigint(21) unsigned DEFAULT NULL, CHARACTER_OCTET_LENGTH
bigint(21) unsigned DEFAULT NULL, NUMERIC_PRECISION
NUMERIC_SCALE
bigint(21) unsigned DEFAULT NULL, DATETIME_PRECISION
bigint(21) unsigned DEFAULT NULL, CHARACTER_SET_NAME
varchar(32) DEFAULT NULL, COLLATION_NAME
varchar(32) DEFAULT NULL, COLUMN_TYPE
longtext NOT NULL, COLUMN_KEY
varchar(3) NOT NULL DEFAULT ”, EXTRA
PRIVILEGES
varchar(80) NOT NULL DEFAULT ”, COLUMN_COMMENT
varchar(1024) NOT NULL DEFAULT ”, id
int(10) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (
id
), KEY
idx_TABLE_NAME
(TABLE_NAME
,COLUMN_KEY
) ) ENGINE=InnoDB AUTO_INCREMENT=918017 DEFAULT CHARSET=utf8 |
+———–+—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————–+
1 row in set (0.01 sec)
test>explain select * from big_table where column_key=’aa’;
+—-+————-+———–+——+—————+——+———+——+——–+————-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+———–+——+—————+——+———+——+——–+————-+
| 1 | SIMPLE | big_table | ALL | NULL | NULL | NULL | NULL | 902397 | Using where |
+—-+————-+———–+——+—————+——+———+——+——–+————-+
1 row in set (0.02 sec)
.test>create index idx_column_key on big_table(column_key);
Query OK, 0 rows affected (22.39 sec)
Records: 0 Duplicates: 0 Warnings: 0
.test>explain select * from big_table where column_key=’aa’;
+—-+————-+———–+——+—————-+—————-+———+——-+——+———————–+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+—-+————-+———–+——+—————-+—————-+———+——-+——+———————–+
| 1 | SIMPLE | big_table | ref | idx_column_key | idx_column_key | 11 | const | 1 | Using index condition |
+—-+————-+———–+——+—————-+—————-+———+——-+——+———————–+
1 row in set (0.00 sec)