在工做之中,因爲SQL問題致使的數據庫故障層出不窮,索引問題是SQL問題中出現頻率最高的,常見的索引問題包括:無索引,隱式轉換,索引建立不合理。mysql
當數據庫中出現訪問表的SQL沒建立索引致使全表掃描,若是表的數據量很大掃描大量的數據,執行效率過慢,佔用數據庫鏈接,鏈接數堆積很快達到數據庫的最大鏈接數設置,新的應用請求將會被拒絕致使故障發生。sql
隱式轉換是指SQL查詢條件中的傳入值與對應字段的數據定義不一致致使索引沒法使用。常見隱式轉換如字段的表結構定義爲字符類型,但SQL傳入值爲數字;或者是字段定義collation爲區分大小寫,在多表關聯的場景下,其表的關聯字段大小寫敏感定義各不相同。隱式轉換會致使索引沒法使用,進而出現上述慢SQL堆積數據庫鏈接數跑滿的狀況。數據庫
查看錶結構。oop
mysql> show create table customers;
CREATE TABLE `customers` (
`cust_id` int(11) NOT NULL AUTO_INCREMENT,
`cust_name` char(50) NOT NULL,
`cust_address` char(50) DEFAULT NULL,
`cust_city` char(50) DEFAULT NULL,
`cust_state` char(5) DEFAULT NULL,
`cust_zip` char(10) DEFAULT NULL,
`cust_country` char(50) DEFAULT NULL,
`cust_contact` char(50) DEFAULT NULL,
`cust_email` char(255) DEFAULT NULL,
PRIMARY KEY (`cust_id`),
) ENGINE=InnoDB AUTO_INCREMENT=10006 DEFAULT CHARSET=utf8
執行語句。性能
mysql> select * from customers where cust_zip = '44444' limit 0,1 \G;
執行計劃。優化
mysql> explain select * from customers where cust_zip = '44444' limit 0,1 \G;
id: 1
select_type: SIMPLE
table: customers
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 505560
Extra: Using where
執行計劃看到type爲ALL,是全表掃描,每次執行須要掃描505560行數據,這是很是消耗性能的,那麼下面將介紹優化方式。spa
添加索引。code
mysql> alter table customers add index idx_cus(cust_zip);
執行計劃。索引
mysql> explain select * from customers where cust_zip = '44444' limit 0,1 \G;
id: 1
select_type: SIMPLE
table: customers
type: ref
possible_keys: idx_cus
key: idx_cus
key_len: 31
ref: const
rows: 4555
Extra: Using index condition
執行計劃看到type爲ref,基於索引的等值查詢,或者表間等值鏈接。ip
表結構同上案例相同,執行語句。
mysql> select cust_id,cust_name,cust_zip from customers where cust_zip = '42222'order by cust_zip,cust_name;
執行計劃。
mysql> explain select cust_id,cust_name,cust_zip from customers where cust_zip = '42222'order by cust_zip,cust_name\G;
id: 1
select_type: SIMPLE
table: customers
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 505560
Extra: Using filesort
添加索引。
mysql> alter table customers add index idx_cu_zip_name(cust_zip,cust_name);
執行計劃。
mysql> explain select cust_id,cust_name,cust_zip from customers where cust_zip = '42222'order by cust_zip,cust_name\G;
id: 1
select_type: SIMPLE
table: customers
type: ref
possible_keys: idx_cu_zip_name
key: idx_cu_zip_name
key_len: 31
ref: const
rows: 4555
Extra: Using where; Using index
order by使用字段,並且字段應該是索引字段。
mysql> explain select * from customers where cust_zip = 44444 limit 0,1 \G;
id: 1
select_type: SIMPLE
table: customers
type: ALL
possible_keys: idx_cus
key: NULL
key_len: NULL
ref: NULL
rows: 505560
Extra: Using where
mysql> show warnings;
Warning: Cannot use range access on index 'idx_cus' due to type or collation conversion on field 'cust_zip'
上述案例中因爲表結構定義cust_zip字段是字符串數據類型,而應用傳入的是數字,致使了隱式轉換,沒法使用索引。
查看錶結構。
mysql> show create table customers1;
CREATE TABLE `customers1` (
`cust_id` varchar(10) CHARACTER SET latin1 COLLATE latin1_bin DEFAULT NULL,
`cust_name` char(50) NOT NULL,
KEY `idx_cu_id` (`cust_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
mysql> show create table customers2;
CREATE TABLE `customers2` (
`cust_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
`cust_name` char(50) NOT NULL,
KEY `idx_cu_id` (`cust_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
執行語句。
mysql> select customers1.* from customers2 left join customers1 on customers1.cust_id=customers2.cust_id where customers2.cust_id='x';
執行計劃。
mysql> explain select customers1.* from customers2 left join customers1 on customers1.cust_id=customers2.cust_id where customers2.cust_id='x'\G;
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: customers2
type: ref
possible_keys: idx_cu_id
key: idx_cu_id
key_len: 33
ref: const
rows: 1
Extra: Using where; Using index
*************************** 2. row ***************************
id: 1
select_type: SIMPLE
table: customers1
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 1
Extra: Using where; Using join buffer (Block Nested Loop)
修改COLLATE。
mysql> alter table customers1 modify column cust_id varchar(10) COLLATE utf8_bin ;
執行計劃。
mysql> explain select cust_id,cust_name,cust_zip from customers where cust_zip = '42222'order by cust_zip,cust_name\G;
id: 1
select_type: SIMPLE
table: customers2
type: ref
possible_keys: idx_cu_id
key: idx_cu_id
key_len: 33
ref: const
rows: 1
Extra: Using where; Using index
id: 1
select_type: SIMPLE
table: customers1
type: ref
possible_keys: idx_cu_id
key: idx_cu_id
key_len: 33
ref: const
rows: 1
Extra: Using where
字段的COLLATE一致後執行計劃使用到了索引,因此必定要注意表字段的collate屬性的定義保持一致。
在使用索引時,咱們能夠經過explain查看SQL的執行計劃,判斷是否使用了索引以及發生了隱式轉換,建立合適的索引。索引太複雜,建立需謹慎。