主頁 > 知識庫 > MySQL創(chuàng)建索引需要了解的

MySQL創(chuàng)建索引需要了解的

熱門標(biāo)簽:南太平洋地圖標(biāo)注 呂梁外呼系統(tǒng) 400電話變更申請 武漢電銷機器人電話 大豐地圖標(biāo)注app 催天下外呼系統(tǒng) 400電話辦理服務(wù)價格最實惠 北京金倫外呼系統(tǒng) html地圖標(biāo)注并導(dǎo)航

前言: 

在 MySQL 中,基本上每個表都會有索引,有時候也需要根據(jù)不同的業(yè)務(wù)場景添加不同的索引。索引的建立對于數(shù)據(jù)庫高效運行是很重要的,本篇文章將介紹下創(chuàng)建索引相關(guān)知識及注意事項。

1.創(chuàng)建索引方法

創(chuàng)建索引可以在建表時指定,也可以建表后使用 alter table 或 create index 語句創(chuàng)建索引。下面展示下幾種常見的創(chuàng)建索引場景。

# 建表時指定索引
CREATE TABLE `t_index` (
  `increment_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增主鍵',
  `col1` int(11) NOT NULL,
  `col2` varchar(20) NOT NULL,
  `col3` varchar(50) NOT NULL,
  `col4` int(11) NOT NULL,
 `col5` varchar(50) NOT NULL,
  PRIMARY KEY (`increment_id`),
  UNIQUE KEY `uk_col1` (`col1`),
  KEY `idx_col2` (`col2`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='測試索引';

# 創(chuàng)建索引(兩種方法)
# 普通索引
alter table `t_index` add index idx_col3 (col3); 
create index idx_col3 on t_index(col3);
# 唯一索引
alter table `t_index` add unique index uk_col4 (col4);
create unique index uk_col4 on t_index(col4);
# 聯(lián)合索引
alter table `t_index` add index idx_col3_col4 (col3,col4);
create index idx_col3_col4 on t_index(col3,col4);
# 前綴索引
alter table `t_index` add index idx_col5 (col5(20)); 
create index idx_col5 on t_index(col5(20));

# 查看表索引
mysql> show index from t_index;
+---------+------------+----------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table   | Non_unique | Key_name | Seq_in_index | Column_name  | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+---------+------------+----------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| t_index |          0 | PRIMARY  |            1 | increment_id | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| t_index |          0 | uk_col1  |            1 | col1         | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| t_index |          1 | idx_col2 |            1 | col2         | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
| t_index |          1 | idx_col3 |            1 | col3         | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
+---------+------------+----------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+

2.創(chuàng)建索引所需權(quán)限

如果你用的不是 root 賬號,那創(chuàng)建索引就要考慮權(quán)限問題了,是不是需要 create、alter 權(quán)限就行了呢?下面我們來具體看下。

# 測試用戶的權(quán)限
mysql> show grants;
+-------------------------------------------------------------------------------------+
| Grants for testuser@%                                                               |
+-------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'testuser'@'%'                                                |
| GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER ON `testdb`.* TO 'testuser'@'%' |
+-------------------------------------------------------------------------------------+

# alter table 方式創(chuàng)建索引
mysql> alter table `t_index` add index idx_col2 (col2);
Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

# create index 方式創(chuàng)建索引
mysql>  create index idx_col3 on t_index(col3);
ERROR 1142 (42000): INDEX command denied to user 'testuser'@'localhost' for table 't_index'

# create index 方式創(chuàng)建索引還需要index權(quán)限 賦予index權(quán)限后再執(zhí)行
mysql> create index idx_col3 on t_index(col3);
Query OK, 0 rows affected (0.04 sec)
Records: 0  Duplicates: 0  Warnings: 0

從上面測試可以看出,使用 alter table 方式創(chuàng)建索引需要 alter 權(quán)限,使用 create index 方式創(chuàng)建索引需要 index 權(quán)限。

另外說明下,刪除索引也是可以使用 alter table `tb_name` drop index xxx 和 drop index xxx on tb_name 兩種方式,分別需要 alter 和 index 權(quán)限。

索引的優(yōu)點顯而易見是可以加速查詢,但創(chuàng)建索引也是有代價的。首先每建立一個索引都要為它建立一棵B+樹,會占用額外的存儲空間;其次當(dāng)對表中的數(shù)據(jù)進(jìn)行增加、刪除、修改時,索引也需要動態(tài)的維護,降低了數(shù)據(jù)的維護速度。所以我們創(chuàng)建索引時還是需要根據(jù)業(yè)務(wù)來考慮的,一個表中建議不要加過多索引。

以上就是MySQL創(chuàng)建索引需要了解的的詳細(xì)內(nèi)容,更多關(guān)于MySQL創(chuàng)建索引的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • MySQL 索引和數(shù)據(jù)表該如何維護
  • MySQL索引知識的一些小妙招總結(jié)
  • MySQL創(chuàng)建高性能索引的全步驟
  • MySQL查詢?nèi)哂嗨饕臀词褂眠^的索引操作
  • MySQL 普通索引和唯一索引的區(qū)別詳解
  • 淺談Mysql哪些字段適合建立索引
  • MySQL復(fù)合索引的深入探究
  • mysql 添加索引 mysql 如何創(chuàng)建索引
  • MySQL索引類型總結(jié)和使用技巧以及注意事項
  • MySQL 創(chuàng)建索引(Create Index)的方法和語法結(jié)構(gòu)及例子
  • mysql性能優(yōu)化之索引優(yōu)化
  • MySQL 主鍵與索引的聯(lián)系與區(qū)別分析
  • MySQL如何構(gòu)建數(shù)據(jù)表索引

標(biāo)簽:無錫 西寧 南充 麗水 徐州 迪慶 龍巖 自貢

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《MySQL創(chuàng)建索引需要了解的》,本文關(guān)鍵詞  MySQL,創(chuàng)建,索引,需要,了解,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《MySQL創(chuàng)建索引需要了解的》相關(guān)的同類信息!
  • 本頁收集關(guān)于MySQL創(chuàng)建索引需要了解的的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章