讓您全面了解并上手億速云產品
常見入門級使用教程
對外 API 開發文檔中心
您歷史提交的工單
您的每一條意見,我們都嚴謹處理
您的每一條建議,我們都認真對待
在數據庫使用過程中,由SQL問題導致的數據庫故障層出不窮,其中索引問題是SQL問題中常見的一種,例如:無索引,隱式轉換,索引創建不合理。
無索引:使用沒有創建索引的SQL訪問數據庫中的表時,系統會進行全表掃描。如果表的數據量很大,則SQL執行效率會過慢,同時占用數據庫連接數,當達到數據庫的最大連接數限制時,新的應用請求將會被拒絕導致出錯。
隱式轉換:指SQL查詢條件中的傳入值與目標字段的數據類型不一致導致索引無法使用,引發慢SQL堆積導致數據庫連接數超出限制。
常見隱式轉換如:字段的表結構定義為字符類型,但SQL傳入值為數字;或者是字段定義collation為區分大小寫,在多表關聯的場景下,其表的關聯字段大小寫敏感定義各不相同。
在數據庫中執行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
執行explain select * from customers where cust_zip = '44444' limit 0,1 \G;
查看目標SQL語句的執行計劃。
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行數據,數據庫的性能消耗非常大。
執行alter table customers add index idx_cus(cust_zip);
添加索引。
重新執行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,即基于索引的等值查詢或者表間等值連接,掃描行數為4555行,大幅優化了查詢速度。
在數據庫中執行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
執行explain select cust_id,cust_name,cust_zip from customers where cust_zip = '42222'order by cust_zip,cust_name\G;
查看目標SQL語句的執行計劃。
id: 1
select_type: SIMPLE
table: customers
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 505560
Extra: Using filesort
執行alter table customers add index idx_cu_zip_name(cust_zip,cust_name);
添加索引。
重新執行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
在數據庫中執行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
執行explain select * from customers where cust_zip = 44444 limit 0,1 \G;
查看目標SQL語句的執行計劃。
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
執行show warnings;
查詢上一個語句執行后的警告信息。
Warning: Cannot use range access on index 'idx_cus' due to type or collation conversion on field 'cust_zip'
說明:
由于cust_zip字段為字符串類型,而應用傳入的是數字,導致隱式轉換,無法使用索引。
可通過如下兩種方案優化:
在數據庫中執行show create table customers1;
和show create table customers2;
查看表結構。
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
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
執行explain select customers1.* from customers2 left join customers1 on customers1.cust_id=customers2.cust_id where customers2.cust_id='x'\G;
查看目標SQL語句的執行計劃。
*************************** 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)
說明:
兩個表中,cust_id字段的字符集未保持一致,無法使用索引。
執行alter table customers1 modify column cust_id varchar(10) COLLATE utf8_bin;
將customers1中cust_id字段的字符集修改為utf8_bin,保證和customers2中的cust_id字段一致。
說明:
執行該語句會同步修改cust_id字段的CHARACTER SET為utf8。
重新執行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: ref
possible_keys: idx_cu_id
key: idx_cu_id
key_len: 33
ref: const
rows: 1
Extra: Using where
說明:
表字段的COLLATE一致后執行計劃成功使用了索引。