MYSQL資料庫四種索引型別的簡單使用

2021-09-02 21:47:38 字數 2206 閱讀 7230

mysql資料庫索引型別包括普通索引,唯一索引,主鍵索引與組合索引,這裡對這些索引的做一些簡單描述:

(1)普通索引

這是最基本的mysql資料庫索引,它沒有任何限制。它有以下幾種建立方式:

建立索引

create index indexname on mytable(username(length));
如果是char,varchar型別,length可以小於字段實際長度;如果是blob和text型別,必須指定 length,下同。

修改表結構

alter mytable add index [indexname] on (username(length)) 建立表的時候直接指定

create table mytable( id int not null, username varchar(16) not null, index [indexname] (username(length)) );
刪除索引的語法:

drop index [indexname] on mytable;
(2)唯一索引

它與前面的普通索引類似,不同的就是:mysql資料庫索引列的值必須唯一,但允許有空值。如果是組合索引,則列值的組合必須唯一。它有以下幾種建立方式:

建立索引

create unique index indexname on mytable(username(length)) 修改表結構

alter mytable add unique [indexname] on (username(length)) 建立表的時候直接指定

create table mytable( id int not null, username varchar(16) not null, unique [indexname] (username(length)) );
(3)主鍵索引

它是一種特殊的唯一索引,不允許有空值。一般是在建表的時候同時建立主鍵索引:

create table mytable( id int not null, username varchar(16) not null, primary key(id) );
當然也可以用 alter 命令。記住:乙個表只能有乙個主鍵。

(4)組合索引

為了形象地對比單列索引和組合索引,為表新增多個字段:

create table mytable( id int not null, username varchar(16) not null, city varchar(50) not null, age int not null );
為了進一步榨取mysql的效率,就要考慮建立組合索引。就是將 name, city, age建到乙個索引裡:

alter table mytable add index name_city_age (name(10),city,age); 建表時,usernname長度為 16,這裡用 10。這是因為一般情況下名字的長度不會超過10,這樣會加速索引查詢速度,還會減少索引檔案的大小,提高insert的更新速度。

如果分別在 usernname,city,age上建立單列索引,讓該錶有3個單列索引,查詢時和上述的組合索引效率也會大不一樣,遠遠低於我們的組合索引。雖然此時有了三個索引,但mysql只能用到其中的那個它認為似乎是最有效率的單列索引。

建立這樣的組合索引,其實是相當於分別建立了下面三組組合mysql資料庫索引:

usernname,city,age usernname,city usernname 為什麼沒有 city,age這樣的組合索引呢?這是因為mysql組合索引「最左字首」的結果。簡單的理解就是只從最左面的開始組合。並不是只要包含這三列的查詢都會用到該組合索引,下面的幾個sql就會用到這個組合mysql資料庫索引:

select * from mytable whree username="admin" and city="鄭州" select * from mytable whree username="admin" 而下面幾個則不會用到:

select * from mytable whree age=20 and city="鄭州" select * from mytable whree city="鄭州"

MYSQL資料庫四種索引型別介紹

主鍵索引 主鍵是一種唯一性索引,但它必須指定為primary key,每個表只能有乙個主鍵。唯一索引 索引列的所有值都只能出現一次,即必須唯一,值可以為空。普通索引 基本的索引型別,值可以為空,沒有唯一性的限制。全文索引 全文索引的索引型別為fulltext。全文索引可以在varchar char ...

MYSQL資料庫四種索引型別的簡單使用

mysql資料庫索引型別包括普通索引,唯一索引,主鍵索引與組合索引,這裡對這些索引的做一些簡單描述 1 普通索引 這是最基本的mysql資料庫索引,它沒有任何限制。它有以下幾種建立方式 建立索引 create index indexname on mytable username length 如果...

mysql的四種索引型別

一 索引的型別 mysql索引的四種型別 主鍵索引 唯一索引 普通索引和全文索引。通過給字段新增索引可以提高資料的讀取速度,提高專案的併發能力和抗壓能力。索引優化時mysql中的一種優化方式。索引的作用相當於圖書的目錄,可以根據目錄中的頁碼快速找到所需的內容。主鍵索引 主鍵是一種唯一性索引,但它必須...