[MySQL光速入門]027 索引

貓哥的技術部落格發表於2019-04-18

什麼是索引

相當於書籍的目錄, 加快查詢速度

是不是索引越多越好?

索引會加快查詢速度, 但是會拖慢寫入速度, 因為每寫入一條資料, 都需要重建索引

索引什麼時候有用

條件越明確, 索引越有用

通俗點說, 經常where哪個欄位, 就給哪個欄位加索引

image.png

試驗一下

我們為了看出速度上的差別, 我們需要3,000,000行資料... 使用儲存過程進行插入

drop table if exists test;

create table test(
    id int,
    name varchar(20),
    sex char(1) default '男',
    age int not null
);

drop procedure if exists batch_insert;

create procedure batch_insert() begin 
    declare i int default 0;
    declare sex_str char(1) default '';
    declare age_int int default 0;
    declare name_str varchar(20) default '';


    while i< 3000000 do
        set i = i + 1;
        set name_str = CONCAT('張三_',i);
        if age_int > 110 then 
            set age_int = 1;
        end if;
        set age_int = age_int + 1;
        if i%3 = 0 then 
            set sex_str = '女';
        else 
            set sex_str = '男';
        end if;

        insert into test(id,sex,age,name) values(i,sex_str,age_int,name_str);
        if i % 100000 = 0 then 
            select CONCAT('當前是第',i,'行...');
        end if;
    end while;
end;

call batch_insert();
複製程式碼

耗時比較

image.png

mysql支援多種索引

mysql索引.png

建立索引

建表時建立

drop table if exists test2;
create table test2(	
	id int not null,
	name varchar(20) not null,
	sex tinyint(1) not null,
	age tinyint(1) not null,
	index(id),
	index(name),
	index(sex),
	index(age)
);

desc test2;
複製程式碼

image.png

image.png

建表後建立

create index 索引名稱 on 表名(欄位名)
複製程式碼

image.png

檢視索引

show index from 表名;
複製程式碼

image.png

刪除索引

drop index 索引名稱 on 表名;
複製程式碼

image.png

快速跳轉

相關文章