下面講講關(guān)于MySQL索引類型分類有哪些,文字的奧妙在于貼近主題相關(guān)。所以,閑話就不談了,我們直接看下文吧,相信看完MySQL索引類型分類有哪些這篇文章你一定會有所受益。
創(chuàng)新互聯(lián)建站主要從事網(wǎng)頁設(shè)計、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機版網(wǎng)站建設(shè))、響應(yīng)式網(wǎng)站、程序開發(fā)、網(wǎng)站優(yōu)化、微網(wǎng)站、微信平臺小程序開發(fā)等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、網(wǎng)絡(luò)營銷經(jīng)驗,集策劃、開發(fā)、設(shè)計、營銷、管理等多方位專業(yè)化運作于一體。
普通索引:是MySQL中的基本索引類型,允許在定義索引的列中插入重復(fù)值和空值。
唯一索引:索引列的值必須唯一,但允許有空值。如果是組合索引,則列值的組合必須唯一。
主鍵索引:是一種特殊的唯一索引,不允許有空值。
單列索引:即一個索引只包含單個列,一個表可以有多個單列索引;
組合索引:指在表的多個字段組合上創(chuàng)建的索引。只有在查詢條件中使用了這些字段的左邊字段時,索引才會被使用。使用組合索引時遵循最左前綴集合。
全文索引類型為FULLTEXT,在定義索引的列上支持值得全文查找,允許在這些索引列
中插入重復(fù)值和空值。全文索引可以在CHAR、VARCHAR或者TEXT類型的列上創(chuàng)建。MySQL 5.7.xx之前只有MyISAM存儲引擎支持全文索引。
空間索引是對空間數(shù)據(jù)類型的字段建立的索引,MySQL中的空間數(shù)據(jù)類型有4中,分別是:
geometry、point、linstring和polygon 。MySQL使用SPATIAL關(guān)鍵字進行擴展,使得能夠用于創(chuàng)建空間索引的列,必須將其聲明為NOT NULL,同樣,在MySQL 5.7.xx之前,空間索引只能在存儲引擎為MyISAM的表中創(chuàng)建。
- 創(chuàng)建索引并非是越多越好,一個表中如果有大量的索引,不僅占用磁盤空間,而且會影響
- insert、delete、update等語句的性能。因為當表中的數(shù)據(jù)更改時,索引也會進行調(diào)整和更新;
- 數(shù)據(jù)量小得表最好不要創(chuàng)建索引,由于數(shù)據(jù)較少,查詢花費的時間可能比遍歷索引的時間還要長;
- 避免對經(jīng)常更新的數(shù)據(jù)創(chuàng)建索引。而對經(jīng)常用于查詢的字段應(yīng)該創(chuàng)建索引;
- 在條件表達式中經(jīng)常用到的不同值較多的列創(chuàng)建索引;
- 當唯一性是某種數(shù)據(jù)本身的特征時,我們創(chuàng)建唯一性索引;
- 在頻繁進行排序或分組的列上建立索引,如果排序的列有多個,可以創(chuàng)建組合索引;
mysql> create table book -> ( -> bookid int, -> bookname varchar(255), -> authors varchar(255), -> info varchar(255), -> comment varchar(255), -> year_publication year, -> index(year_publication) -> ); mysql> show create table book\G *************************** 1. row *************************** Table: book Create Table: CREATE TABLE `book` ( `bookid` int(11) DEFAULT NULL, `bookname` varchar(255) DEFAULT NULL, `authors` varchar(255) DEFAULT NULL, `info` varchar(255) DEFAULT NULL, `comment` varchar(255) DEFAULT NULL, `year_publication` year(4) DEFAULT NULL, KEY `year_publication` (`year_publication`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 1 row in set (0.00 sec)
使用explain判斷索引是否正在被使用,如下:
mysql> explain select * from book where year_publication=1999\G; *************************** 1. row *************************** id: 1 select_type: SIMPLE table: book partitions: NULL type: ref possible_keys: year_publication key: year_publication key_len: 2 ref: const rows: 1 filtered: 100.00 Extra: Using index condition 1 row in set, 1 warning (0.00 sec)
唯一索引主要原因是減少查詢索引列操作的執(zhí)行時間。尤其是對比比較龐大的數(shù)據(jù)表。與普通索引類似,不同點在于:索引列的值必須唯一,但允許有空值。如果是組合索引,則列值的組合必須唯一。
mysql> create table t1( -> id int not null, -> name char(30), -> unique index Uniqidx(id) -> ); mysql> show create table t1\G *************************** 1. row *************************** Table: t1 Create Table: CREATE TABLE `t1` ( `id` int(11) NOT NULL, `name` char(30) DEFAULT NULL, UNIQUE KEY `Uniqidx` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8
單列索引:是在數(shù)據(jù)表中的某一字段上創(chuàng)建的索引,一個表中可以創(chuàng)建多個單列索引。
mysql> create table t2 -> ( -> id int not null, -> name char(50) null, -> index singleidx(name) -> ); mysql> show create table t2\G *************************** 1. row *************************** Table: t2 Create Table: CREATE TABLE `t2` ( `id` int(11) NOT NULL, `name` char(50) DEFAULT NULL, KEY `singleidx` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 1 row in set (0.00 sec)
組合索引:是在多個字段上創(chuàng)建一個索引。遵循最左前綴原則。最左前綴 索引最左邊的列來匹配行。
mysql> create table t3 -> ( -> id int not null, -> name char(30) not null, -> age int not null, -> info varchar(255), -> index multiidx(id,name,age) -> ); mysql> show create table t3\G *************************** 1. row *************************** Table: t3 Create Table: CREATE TABLE `t3` ( `id` int(11) NOT NULL, `name` char(30) NOT NULL, `age` int(11) NOT NULL, `info` varchar(255) DEFAULT NULL, KEY `multiidx` (`id`,`name`,`age`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 1 row in set (0.00 sec)
注:組合索引可以起幾個索引的作用,但是使用時并不是隨意查詢哪個字段都是可以使用索引。而是遵循最左前綴:利用索引中最左邊的列集來匹配行。這樣的列集稱為最左前綴。
全文索引:FULLTEXT,可以用于全文搜索,支持為CHAR\VARCHAR和TEXT 列。索引總是對整個列進行,不支持局部索引,適合大型數(shù)據(jù)的表創(chuàng)建。
mysql> create table test8 ( id int not null, title varchar(255), body varchar(255),fulltext index(body) ) ENGINE=MyISAM; mysql> show create table t4\G *************************** 1. row *************************** Table: t4 Create Table: CREATE TABLE `t4` ( `id` int(11) NOT NULL, `name` char(30) NOT NULL, `age` int(11) NOT NULL, `info` varchar(255) DEFAULT NULL, FULLTEXT KEY `fullidx` (`info`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 1 row in set (0.00 sec) mysql> insert into test8 values(2,'數(shù)據(jù)庫','WORDS OF WISDOM: Like they say in Asia, nobody should use a fork. Tradition evven dictates to “chop” all your forks and “stick” to the origiinal. '); Query OK, 1 row affected (0.00 sec) mysql> insert into test8 values(1,'數(shù)據(jù)庫','In MySQL 8.0.17, we made an observation in the well-known TPC-H benchmark for one particular query'); Query OK, 1 row affected (0.00 sec) mysql> explain select * from test8 where match(body) against('MySQL')\G *************************** 1. row *************************** id: 1 select_type: SIMPLE table: test8 partitions: NULL type: fulltext possible_keys: body key: body key_len: 0 ref: const rows: 1 filtered: 100.00 Extra: Using where; Ft_hints: sorted 1 row in set, 1 warning (0.00 sec)
查看到的數(shù)據(jù)如下:
注:在上面創(chuàng)建全文索引的方式中,可以實現(xiàn)英文的全文索引,每個單詞以空格分隔來匹配,若想實現(xiàn)中文的全文索引,那么需要在創(chuàng)建表的同時,加上“with parser ngram”來帶上中文解析器。
中文的全文索引創(chuàng)建如下:
mysql> create table test10 -> ( -> id int not null, -> title varchar(50), -> info text, -> fulltext index(title,info) with parser ngram); mysql> insert into test10 values(1,'測試','主辦方介紹,本次大展將更加突出互動性強,大眾參與度高的特點,讓觀展者不僅享受視 覺盛宴,更能體驗到冰雪運動的快樂。'); Query OK, 1 row affected (0.00 sec) mysql> insert into test10 values(2,'測試2','中國攝影家協(xié)會分 黨組書記、駐會副主席鄭更生,中國攝影家協(xié)會副主席線云強,中國 攝影家協(xié)會顧問王玉文'); Query OK, 1 row affected (0.00 sec) mysql> explain select * from test10 where match(title,info) against('中國')\G *************************** 1. row *************************** id: 1 select_type: SIMPLE table: test10 partitions: NULL type: fulltext possible_keys: title key: title key_len: 0 ref: const rows: 1 filtered: 100.00 Extra: Using where; Ft_hints: sorted 1 row in set, 1 warning (0.00 sec)
上述查到的結(jié)果如下:
空間索引:必須在MyISAM類型的表中創(chuàng)建,且空間類型的字段必須為非空。
mysql> create table t5 -> ( -> g geometry not null, -> spatial index spaidx(g) -> )engine=myisam; mysql> show create table t5\G *************************** 1. row *************************** Table: t5 Create Table: CREATE TABLE `t5` ( `g` geometry NOT NULL, SPATIAL KEY `spaidx` (`g`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 1 row in set (0.00 sec)
mysql> alter table book add unique index uniqidx(bookid);
mysql> alter table book add index bkidex(comment(50));
mysql> alter table t6 add fulltext index infofulidx(info);
mysql> alter table book add index abc(authors(20),info);
mysql> alter table t5 add spatial index spatidx(g);
mysql> CREATE TABLE book1 ( bookid INT NOT NULL, bookname VARCHAR(255) NOT NULL, authors VARCHAR(255) NOT NULL, info VARCHAR(255) NULL, comment VARCHAR(255) NULL, year_publication YEAR NOT NULL ); Query OK, 0 rows affected (0.02 sec)
mysql> create index bknameidex on book1(bookname);
mysql> create index bkcmtidex on book1(comment(50));
mysql> create index bkauthandinfoidex on book1(authors,info);
mysql> create fulltext index fullidx on book(info);
mysql> create unique index uniqidx on book1(bookid);
mysql> create table t7 (g geometry not null); mysql> create spatial index spaidx on t7(g);
刪除表中的列時,如果要刪除的列為索引的組成部分,則該列也會從索引中刪除。如果組成索引的所有列都被刪除,那么整個索引將被刪除。
mysql> show index from book\G
mysql> alter table book drop index uniqidx;
注:添加AUTO_INCREMENT 的約束字段的唯一索引不能刪除
mysql> drop index spaidx on t7;
對于以上MySQL索引類型分類有哪些相關(guān)內(nèi)容,大家還有什么不明白的地方嗎?或者想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。