您好,登錄后才能下訂單哦!
下面講講關于mysql索引的詳細知識,文字的奧妙在于貼近主題相關。所以,閑話就不談了,我們直接看下文吧,相信看完mysql索引的詳細知識這篇文章你一定會有所受益。
一:什么是索引
索引本身是一個獨立的存儲單位,在該單位里邊有記錄著數據表某個字段和字段對應的物理空間。索引內部有算法支持,可以使查詢速度非常快。【相關視頻教程推薦:mysql教程】
有了索引,我們根據索引為條件進行數據查詢,速度就非常快
1,索引本身有“算法”支持,可以快速定位我們要找到的關鍵字(字段)
2,索引字段與物理地址有直接對應,幫助我們快速定位要找到的信息
一個數據表的全部字段都可以設置索引
二,索引類型
1,四種類型:
(1) 主鍵 parimary key
必須給主鍵索引設置auto_increment,索引列的值要求不能為null,要唯一
(2)唯一 unique index
索引列的值不能重復,但允許有空值
(3)普通索引 index
索引列的值可以重復。
(4)全文索引 fulltext index
Myisam數據表可以設置該索引
2,復合索引
索引是由兩個或更多的列組成,就稱復合索引或聯合索引。
三,創建索引
1,創建表時
1),創建一個member表時,并創建各種索引。
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 '學校', intro text comment '簡介', primary key (id), // 主鍵索引 unique index nm (name), //唯一索引,索引也可以設置名稱,不設置名字的話,默認字段名 index (height), //普通索引 fulltext index (intro) //全文索引 )engine = myisam charset = utf8;
2),給現有數據表添加索引
//注:一般設置主鍵后,會把主鍵字段設置為自增。(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),創建一個復合索引(索引沒有名稱,默認把第一個字段取出來作為名稱)
alter table member add unique key nm (name,height);
2,刪除索引
alter table 表名 drop primary key;//刪除主鍵索引
注意:
該主鍵字段如果存在auto_increment 屬性,需要先刪除。(alter table 表名modify 主鍵 int not null comment '主鍵')
去除去數據表字段的auto_increment屬性;
alter table 表名 drop index 索引名稱; //刪除其它索引(唯一,普通,全文)
例:
alter table member drop index nm;
四、explain 查看索引是否使用
具體操作: explain 查詢sql語句
這是沒有設置主鍵索引的情形:(執行速度、效率低)
加上主鍵后:
五、索引適合的場景
1、where查詢條件(where之后設置的查詢條件字段都適合做索引)。
2、排序查詢(order by字段)
六、索引原則
1、字段獨立原則
select * from emp where empno = 1325467;//empno條件獨立,使用索引 select * from emp where empno+2 = 1325467;//empno條件不獨立,只有獨立的條件字段才可以使用索引
2,左原則
模糊查詢,like & _
%:關聯多個模糊內容
_:關聯一個模糊內容
例:
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,復合索引 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左右的關聯條件必須都具備索引,才可以使用索引。
例:(index(a)、index(b))
select * from 表名 where a = 1 or b = 1;//使用索引 select * from 表名 where a = 1 or c = 1;//沒有使用索引
對于以上mysql索引的詳細知識相關內容,大家還有什么不明白的地方嗎?或者想要了解更多相關,可以繼續關注我們的行業資訊板塊。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。