Mysql 索引及存储过程

Posted 帅猿客栈

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql 索引及存储过程相关的知识,希望对你有一定的参考价值。



索引

1 创建索引

语法 :

CREATE INDEX index_name(索引名)  ON tbl_name(index_col_name,...)

2 查看索引

语法:

show index from table_name;

3 删除索引

语法 :

DROP INDEX index_name ON tbl_name;

4 ALTER命令

1). alter table tb_name add primary key(column_list);该语句添加一个主键,这意味着索引值必须是唯一的,且不能为NULL2). alter table tb_name add unique index_name(column_list);这条语句创建索引的值必须是唯一的(除了NULL外,NULL可能会出现多次)3). alter table tb_name add index index_name(column_list);添加普通索引, 索引值可以出现多次4). alter table tb_name add fulltext index_name(column_list);该语句指定了索引为FULLTEXT, 用于全文索引

索引设计原则

    索引的设计可以遵循一些已有的原则,创建索引的时候请尽量考虑符合这些原则,便于提升索引的使用效率,更高效的使用索引

    1.对查询频次较高,且数据量比较大的表建立索引。

索引字段的选择,最佳候选列应当从where子句的条件中提取,如果where子句中的组合比较多,那么应当挑选最常用、过滤效果最好的列的组合。

    2.使用唯一索引,区分度越高,使用索引的效率越高

    3.索引可以有效的提升查询数据的效率,但索引数量不是多多益善,索引越多,维护索引的代价自然也就水涨船高。对于插入、更新、删除等DML操作比较频繁的表来说,索引过多,会引入相当高的维护代价,降低DML操作的效率,增加相应操作的时间消耗。另外索引过多的话,mysql也会犯选择困难病,虽然最终仍然会找到一个可用的索引,但无疑提高了选择的代价

    4.使用短索引,索引创建之后也是使用硬盘来存储的,因此提升索引访问的I/O效率,也可以提升总体的访问效率。假如构成索引的字段总长度比较短,那么在给定大小的存储块内可以存储更多的索引值,相应的可以有效的提升MySQL访问索引的I/O效率。

    5.利用最左前缀,N个列组合而成的组合索引,那么相当于是创建了N个索引,如果查询时where子句中使用了组成该索引的前几个字段,那么这条查询SQL可以利用组合索引来提升查询效率。    

创建复合索引: CREATE INDEX idx_name_email_status ON tb_seller(NAME,email,STATUS); 就相当于对name 创建索引 ; 对name , email 创建了索引 ; 对name , email, status 创建了索引 ;



存储过程
创建存储过程create procedure pro_demo1()BEGIN select 'hello word';end;调用存储过程call pro_demo1();查看存储过程-- 查询db_name数据库中的所有的存储过程select name from mysql.proc where db='demo';-- 查询存储过程的状态信息show procedure status;-- 查询某个存储过程的定义show create procedure pro_demo1;删除存储过程drop procedure if exists pro_demo1;-- DECLARE变量create procedure pro_test1()begin  DECLARE num int default 90; select concat('nun的值为',num);end;call pro_test1();
create procedure pro_test3()begin declare num int; set num=200; select num;endcall pro_test3();
create procedure pro_test4()BEGIN declare num int default 0; select count(*) into num from city; select concat('city表中的数据有',num);ENDcall pro_test4(); if条件判断 create procedure pro_test6()begin declare height int default 175; declare des VARCHAR(20); if height>=180 then set des = '身材高挑'; elseif height>=170 and height<180 then set des = '标准身材'; else set des = '一般身材'; end if; select concat('身高',height,'身材',des);endcall pro_test6;
create procedure pro_test7(in height int,out des varchar(20))begin if height>=180 THEN set des='身材高挑'; elseif height>=170 and height<180 THEN set des='标准身材'; ELSE set des='一般身材'; end if;end
call pro_test7(190,@descr);select @descr; case结构create procedure pro_test8(in a int)begin declare b varchar(20); case when a>=1 and a<=3 then set b='第一季度'; when a>=4 and a<=6 then set b='第二季度'; when a>=7 and a<=9 then set b='第三季度'; else set b='第四季度';end case; select concat('月份',a,'季度',b);end
call pro_test8(3); while循环create procedure pro_test12(in n int)begin declare sun int default 0; declare num int default 1; while num<=n DO set sun=sun+num; set num=num+1; end while; select concat('从1加到',n,'的和为',sun);end call pro_test12(100);

1. 存储过程和函数

1.1 存储过程和函数概述

存储过程和函数是  事先经过编译并存储在数据库中的一段 SQL 语句的集合,调用存储过程和函数可以简化应用开发人员的很多工作,减少数据在数据库和应用服务器之间的传输,对于提高数据处理的效率是有好处的。

存储过程和函数的区别在于函数必须有返回值,而存储过程没有。

函数 :是一个有返回值的过程 ;

过程 :是一个没有返回值的函数 ;

1.2 创建存储过程

CREATE PROCEDURE 存储过程的名称 ([proc_parameter[,...]])begin -- SQL语句end ;

示例 :

delimiter $
create procedure pro_test2()begin select 'Hello Mysql' ; end$
delimiter ;

知识小贴士

DELIMITER

该关键字用来声明SQL语句的分隔符 , 告诉 MySQL 解释器,该段命令是否已经结束了,mysql是否可以执行了。默认情况下,delimiter是分号;。在命令行客户端中,如果有一行命令以分号结束,那么回车后,mysql将会执行该命令。

1.3 调用存储过程

call procedure_name() ;

1.4 查看存储过程

-- 查询db_name数据库中的所有的存储过程
select name from mysql.proc where db='db_name';


-- 查询存储过程的状态信息
show procedure status;


-- 查询某个存储过程的定义
show create procedure test.pro_test1 \G;

1.5 删除存储过程

DROP PROCEDURE  [IF EXISTS] sp_name ;

1.6 语法

存储过程是可以编程的,意味着可以使用变量,表达式,控制结构 , 来完成比较复杂的功能。

1.6.1 变量
  • DECLARE

    通过 DECLARE 可以定义一个局部变量,该变量的作用范围只能在 BEGIN…END 块中。

DECLARE  变量名[,...] 数据类型 [DEFAULT value]

示例 :

 delimiter $

create procedure pro_test2()
begin
declare num int default 5;
select num+ 10;
end$

delimiter ;


  • SET

直接赋值使用 SET,可以赋常量或者赋表达式,具体语法如下:

  SET 变量名 = 值或者表达式 [, var_name = expr] ...

示例 :

  DELIMITER $
 
 CREATE PROCEDURE pro_test3()
 BEGIN
DECLARE NAME VARCHAR(20);
SET NAME = 'MYSQL';
SELECT NAME ;
END$
 
DELIMITER ;


也可以通过select ... into 方式进行赋值操作 :

DELIMITER $

CREATE PROCEDURE pro_test5()
BEGIN
declare countnum int;
select count(*) into countnum from city;
select countnum;
END$

DELIMITER ;
1.6.2 if条件判断

语法结构 :

if 条件 then 满足条件执行的语句

[elseif 条件 then 满足条件执行的语句] ...

[else 以上条件都不满足]

end if;

需求:declare  height int default 175 ;      declare  description  varchar(20);

根据定义的身高变量,判定当前身高的所属的身材类型

180 及以上 ----------> 身材高挑

170 - 180  ---------> 标准身材

170 以下  ----------> 一般身材

示例 :

delimiter $

create procedure pro_test6()
begin
declare height  int default  175;
declare description  varchar(50);
 
if height >= 180 then
   set description = '身材高挑';
elseif height >= 170 and height < 180 then
   set description = '标准身材';
else
   set description = '一般身材';
end if;
 
 select description ;
end$

delimiter ;

调用结果为 :


1.6.3 传递参数

语法格式 :

create procedure procedure_name([in/out/inout] 参数名   参数类型)
...


IN :   该参数可以作为输入,也就是需要调用方传入值 , 默认
OUT:   该参数作为输出,也就是该参数可以作为返回值
INOUT: 既可以作为输入参数,也可以作为输出参数

IN - 输入

需求 :

根据定义的身高变量,判定当前身高的所属的身材类型

示例  :

delimiter $

create procedure pro_test5(in height int)
begin
  declare description varchar(50) default '';
if height >= 180 then
   set description='身材高挑';
elseif height >= 170 and height < 180 then
   set description='标准身材';
else
   set description='一般身材';
end if;
 select concat('身高 ', height , '对应的身材类型为:',description);
end$

delimiter ;


OUT-输出

需求 :

根据传入的身高变量,获取当前身高的所属的身材类型  

示例:

create procedure pro_test5(in height int , out description varchar(100))
begin
if height >= 180 then
   set description='身材高挑';
elseif height >= 170 and height < 180 then
   set description='标准身材';
else
   set description='一般身材';
end if;
end$

调用:

call pro_test5(168, @description)$

select @description$

小知识 

@description :  这种变量要在变量名称前面加上“@”符号,叫做用户会话变量,代表整个会话过程他都是有作用的,这个类似于全局变量一样。

@@global.sort_buffer_size : 这种在变量前加上 "@@" 符号, 叫做 系统变量


1.6.4 case结构

语法结构 :

方式一 : 

CASE case_value

WHEN when_value THEN statement_list
 
[WHEN when_value THEN statement_list] ...
 
[ELSE statement_list]
 
END CASE;


方式二 :

CASE

WHEN 条件 THEN 满足条件执行的语句
 
[WHEN 条件 THEN 满足条件执行的语句] ...
 
[ELSE 以上条件都不满足执行的语句]
 
END CASE;

需求:

给定一个月份(输入参数), 然后计算出所在的季度

示例  :

delimiter $


create procedure pro_test9(month int)
begin
declare result varchar(20);
case
  when month >= 1 and month <=3 then
     set result = '第一季度';
  when month >= 4 and month <=6 then
     set result = '第二季度';
  when month >= 7 and month <=9 then
     set result = '第三季度';
  when month >= 10 and month <=12 then
     set result = '第四季度';
end case;
 
 select concat('您输入的月份为 :', month , ' , 该月份为 : ' , result) as content ;
 
end$


delimiter ;


1.6.5 while循环

语法结构:

while 循环条件 do

statement_list

end while;

需求:

计算从1加到n的值

示例  :

delimiter $

create procedure pro_test8(n int)
begin
declare total int default 0;
declare num int default 1;
while num<=n do
   set total = total + num;
set num = num + 1;
end while;
 select total;
end$

delimiter ;


1.6.6 repeat结构

有条件的循环控制语句, 当满足条件的时候退出循环 。while 是满足条件才执行,repeat 是满足条件就退出循环。

语法结构 :

REPEAT

statement_list

UNTIL search_condition

END REPEAT;

需求:

计算从1加到n的值

示例  :

delimiter $

create procedure pro_test10(n int)
begin
declare total int default 0;
 
repeat
   set total = total + n;
   set n = n - 1;
  until n=0  
end repeat;
 
 select total ;
 
end$


delimiter ;


1.6.7 loop语句

LOOP 实现简单的循环,退出循环的条件需要使用其他的语句定义,通常可以使用 LEAVE 语句实现,具体语法如下:

[begin_label:] LOOP

statement_list

END LOOP [end_label]

如果不在 statement_list 中增加退出循环的语句,那么 LOOP 语句可以用来实现简单的死循环。


1.6.8 leave语句

用来从标注的流程构造中退出,通常和 BEGIN ... END 或者循环一起使用。下面是一个使用 LOOP 和 LEAVE 的简单例子 , 退出循环:

delimiter $

CREATE PROCEDURE pro_test11(n int)
BEGIN
declare total int default 0;
 
ins: LOOP
   
  IF n <= 0 then
    leave ins;
  END IF;
   
   set total = total + n;
   set n = n - 1;

END LOOP ins;
 
 select total;
END$

delimiter ;


1.6.9 游标/光标

游标是用来存储查询结果集的数据类型 , 在存储过程和函数中可以使用光标对结果集进行循环的处理。光标的使用包括光标的声明、OPEN、FETCH 和 CLOSE,其语法分别如下。

声明光标:

DECLARE cursor_name CURSOR FOR select_statement ;

OPEN 光标:

OPEN cursor_name ;

FETCH 光标:

FETCH cursor_name INTO var_name [, var_name] ...

CLOSE 光标:

CLOSE cursor_name ;


示例 :

初始化脚本:

create table emp(
id int(11) not null auto_increment ,
name varchar(50) not null comment '姓名',
age int(11) comment '年龄',
salary int(11) comment '薪水',
primary key(`id`)
)engine=innodb default charset=utf8 ;

insert into emp(id,name,age,salary) values(null,'金毛狮王',55,3800),(null,'白眉鹰王',60,4000),(null,'青翼蝠王',38,2800),(null,'紫衫龙王',42,1800);


-- 查询emp表中数据, 并逐行获取进行展示
create procedure pro_test11()
begin
declare e_id int(11);
declare e_name varchar(50);
declare e_age int(11);
declare e_salary int(11);
declare emp_result cursor for select * from emp;
 
open emp_result;
 
fetch emp_result into e_id,e_name,e_age,e_salary;
 select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);
 
fetch emp_result into e_id,e_name,e_age,e_salary;
 select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);
 
fetch emp_result into e_id,e_name,e_age,e_salary;
 select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);
 
fetch emp_result into e_id,e_name,e_age,e_salary;
 select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);
 
fetch emp_result into e_id,e_name,e_age,e_salary;
 select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);
 
close emp_result;
end$


通过循环结构 , 获取游标中的数据 :

DELIMITER $

create procedure pro_test12()
begin
DECLARE id int(11);
DECLARE name varchar(50);
DECLARE age int(11);
DECLARE salary int(11);
DECLARE has_data int default 1;
 
DECLARE emp_result CURSOR FOR select * from emp;
DECLARE EXIT HANDLER FOR NOT FOUND set has_data = 0;
 
open emp_result;
 
repeat
  fetch emp_result into id , name , age , salary;
   select concat('id为',id, ', name 为' ,name , ', age为 ' ,age , ', 薪水为: ', salary);
  until has_data = 0
end repeat;
 
close emp_result;
end$

DELIMITER ;


1.7 存储函数

语法结构:

CREATE FUNCTION function_name([param type ... ]) 
RETURNS type
BEGIN
...
END;

案例 :

定义一个存储过程, 请求满足条件的总记录数 ;

delimiter $

create function count_city(countryId int)
returns int
begin
declare cnum int ;
 
 select count(*) into cnum from city where country_id = countryId;
 
return cnum;
end$

delimiter ;

调用:

select count_city(1);

select count_city(2);

以上是关于Mysql 索引及存储过程的主要内容,如果未能解决你的问题,请参考以下文章

ClickHouse存储结构及索引详解

MYSQl之数据类型及sql模型管理表和索引

JavaLearn#(17)MySQL基础知识DML及DDL语句外键及非外键约束外键策略DQL语句(单表多表)连接查询子查询索引事务视图存储过程用户权限及角色管理

JavaLearn#(17)MySQL基础知识DML及DDL语句外键及非外键约束外键策略DQL语句(单表多表)连接查询子查询索引事务视图存储过程用户权限及角色管理

MySQL索引事务及存储引擎

MySQL索引事务及存储引擎