mysql索引是什么?淺談mysql索引
發(fā)表時(shí)間:2023-05-29 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]本篇文章給大家?guī)?lái)的內(nèi)容是mysql索引是什么?淺談mysql索引,讓大家對(duì)mysql索引有一個(gè)簡(jiǎn)單的了解。有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你們有所幫助。一:什么是索引索引本身是一...
本篇文章給大家?guī)?lái)的內(nèi)容是mysql索引是什么?淺談mysql索引,讓大家對(duì)mysql索引有一個(gè)簡(jiǎn)單的了解。有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你們有所幫助。
一:什么是索引
索引本身是一個(gè)獨(dú)立的存儲(chǔ)單位,在該單位里邊有記錄著數(shù)據(jù)表某個(gè)字段和字段對(duì)應(yīng)的物理空間。索引內(nèi)部有算法支持,可以使查詢速度非?!鞠嚓P(guān)視頻教程推薦:mysql教程】
有了索引,我們根據(jù)索引為條件進(jìn)行數(shù)據(jù)查詢,速度就非常快
1,索引本身有“算法”支持,可以快速定位我們要找到的關(guān)鍵字(字段)
2,索引字段與物理地址有直接對(duì)應(yīng),幫助我們快速定位要找到的信息
一個(gè)數(shù)據(jù)表的全部字段都可以設(shè)置索引
二,索引類型
1,四種類型:
(1) 主鍵 parimary key
必須給主鍵索引設(shè)置auto_increment,索引列的值要求不能為null,要唯一
(2)唯一 unique index
索引列的值不能重復(fù),但允許有空值
(3)普通索引 index
索引列的值可以重復(fù)。
(4)全文索引 fulltext index
Myisam數(shù)據(jù)表可以設(shè)置該索引
2,復(fù)合索引
索引是由兩個(gè)或更多的列組成,就稱復(fù)合索引或聯(lián)合索引。
三,創(chuàng)建索引
1,創(chuàng)建表時(shí)
1),創(chuàng)建一個(gè)member表時(shí),并創(chuàng)建各種索引!
create table member(
id int not null auto_increment comment '主鍵',
name char(10) not null default '' comment '姓名',
height tinyint not null default 0 comment '身高',
old tinyint not null default 0 comment '年齡',
school varchar(32) not null default '' comment '學(xué)校',
intro text comment '簡(jiǎn)介',
primary key (id), // 主鍵索引
unique index nm (name), //唯一索引,索引也可以設(shè)置名稱,不設(shè)置名字的話,默認(rèn)字段名
index (height), //普通索引
fulltext index (intro) //全文索引
)engine = myisam charset = utf8;
2),給現(xiàn)有數(shù)據(jù)表添加索引
//注:一般設(shè)置主鍵后,會(huì)把主鍵字段設(shè)置為自增。(alter table member modify id int not null auto_increment comment '主鍵';)
alter table member add primary key(id);
alter table member add unique key nm (name);
alter table member add index(height);
alter table member add fulltext index(intro);
3),創(chuàng)建一個(gè)復(fù)合索引(索引沒(méi)有名稱,默認(rèn)把第一個(gè)字段取出來(lái)作為名稱)
alter table member add unique key nm (name,height);
2,刪除索引
alter table 表名 drop primary key;//刪除主鍵索引
注意:
該主鍵字段如果存在auto_increment 屬性,需要先刪除。(alter table 表名modify 主鍵 int not null comment '主鍵')
去除去數(shù)據(jù)表字段的auto_increment屬性;
alter table 表名 drop index 索引名稱; //刪除其它索引(唯一,普通,全文)
例:
alter table member drop index nm;
四、explain 查看索引是否使用
具體操作: explain 查詢sql語(yǔ)句
這是沒(méi)有設(shè)置主鍵索引的情形:(執(zhí)行速度、效率低)
加上主鍵后:
五、索引適合的場(chǎng)景
1、where查詢條件(where之后設(shè)置的查詢條件字段都適合做索引)。
2、排序查詢(order by字段)
六、索引原則
1、字段獨(dú)立原則
select * from emp where empno = 1325467;//empno條件獨(dú)立,使用索引
select * from emp where empno+2 = 1325467;//empno條件不獨(dú)立,只有獨(dú)立的條件字段才可以使用索引
2,左原則
模糊查詢,like & _
%:關(guān)聯(lián)多個(gè)模糊內(nèi)容
_:關(guān)聯(lián)一個(gè)模糊內(nèi)容
例:
select * form 表名 where a like "beijing%";//使用索引
select * from 表名 where a like "beijing_";//使用索引
select * from 表名 where a like "%beijing%”;//不使用索引
select * from 表名 where a like "%beijing";//不使用索引
3,復(fù)合索引 index(a,b)
select * from 表名 where a like "beijing%";//使用索引
select * from 表名 where b like "beijing%;//不使用索引
select * form 表名 where a like "beijing%" and b like "beijng%";//使用索引
4,or原則
OR左右的關(guān)聯(lián)條件必須都具備索引,才可以使用索引。
例:(index(a)、index(b))
select * from 表名 where a = 1 or b = 1;//使用索引
select * from 表名 where a = 1 or c = 1;//沒(méi)有使用索引
總結(jié):以上就是本篇文章的全部?jī)?nèi)容,希望能對(duì)大家的學(xué)習(xí)有所幫助。
以上就是mysql索引是什么?淺談mysql索引的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門(mén)到精通的SQL知識(shí)。