Mysql必读MySQL存储过程的优化实例

Mysql必读MySQL存储过程的优化实例,第1张

概述介绍《Mysql必读MySQL存储过程优化实例》开发教程,希望对您有用。

《MysqL必读MysqL存储过程的优化实例》要点:
本文介绍了MysqL必读MysqL存储过程的优化实例,希望对您有用。如果有疑问,可以联系我们。

前言MysqL入门

在数据库的开发过程中,经常会遇到复杂的业务逻辑和对数据库的 *** 作,这个时候就会用存储过程来封装数据库 *** 作.如果项目的存储过程较多,书写又没有一定的规范,将会影响以后的系统维护困难和大存储过程逻辑的难以理解,另外如果数据库的数据量大或者项目对存储过程的性能要求很,就会遇到优化的问题,否则速度有可能很慢,经过亲身经验,一个经过优化过的存储过程要比一个性能差的存储过程的效率甚至高几百倍.下面介绍某一个MysqL存储过程优化的整个过程.MysqL入门

在本文中,需要被优化的存储过程如下:MysqL入门

drop procedure if exists pr_dealtestnum;delimiter //create procedure pr_dealtestnum(  in  p_Boxnumber  varchar(30))pr_dealtestnum_label:begin    insert into tb_testnum select Boxnumber,usertype from tb_testnum_tmp where Boxnumber= p_Boxnumber;    leave pr_dealtestnum_label;end;//delimiter ;select 'create procedure pr_dealtestnumok';

在存储过程中使用到的表tb_testnum结构如下:MysqL入门

drop table if exists tb_testnum;create table tb_testnum(  Boxnumber varchar(30) not null,usertype  int     not null                                         );create unique index IDx1_tb_testnum ontb_testnum(Boxnumber);

在存储过程中使用到的另外一张表tb_testnum_tmp结构如下:MysqL入门

drop table if exists tb_testnum_tmp;create table tb_testnum_tmp(  Boxnumber varchar(30) not null,usertype  int     not null  );create unique index IDx1_tb_testnum_tmp ontb_testnum_tmp(Boxnumber);

从两个表的结构可以看出,tb_testnum和tb_testnum_tmp所包含的字段完全相同,存储过程pr_dealtestnum的作用是根据输入参数将tb_testnum_tmp表的数据插入到tb_testnum表中.MysqL入门

很明显,虽然能够实现预期的功能,但存储过程pr_dealtestnum的代码还有改进的地方.MysqL入门

下面,我们一步一步来对其进行优化.MysqL入门

优化一 MysqL入门

存储过程pr_dealtestnum的主体是一条insert语句,但这条insert语句里面又包含了select语句,这样的编写是不规范的.因此,我们要把这条insert语句拆分成两条语句,即先把数据从tb_testnum_tmp表中查找出来,再插入到tb_testnum表中.修改之后的存储过程如下:MysqL入门

drop procedure if exists pr_dealtestnum;delimiter //create procedure pr_dealtestnum(  in  p_Boxnumber  varchar(30))pr_dealtestnum_label:begin    declare p_usertype  int;    select usertype into p_usertype from tb_testnum_tmp where Boxnumber=p_Boxnumber;    insert into tb_testnum values(p_Boxnumber,p_usertype);    leave pr_dealtestnum_label;end;//delimiter ;select 'create procedure pr_dealtestnum ok';

优化二
MysqL入门

在向tb_testnum表插入数据之前,要判断该条数据在表中是否已经存在了,如果存在,则不再插入数据.同理,在从tb_testnum_tmp表中查询数据之前,要先判断该条数据在表中是否存在,才能从表中查找数据.修改之后的存储过程如下:MysqL入门

drop procedure if exists pr_dealtestnum;delimiter //create procedure pr_dealtestnum(  in  p_Boxnumber  varchar(30))pr_dealtestnum_label:begin    declare p_usertype  int;    declare p_datacount int;    select count(*) into p_datacount from tb_testnum_tmp where Boxnumber=p_Boxnumber;    if p_datacount > 0 then    begin      select usertype into p_usertype fromtb_testnum_tmp where Boxnumber=p_Boxnumber;    end;    else    begin      leave pr_dealtestnum_label;    end;    end if;    select count(*) into p_datacount from tb_testnum where Boxnumber=p_Boxnumber;    if p_datacount = 0 then    begin      insert into tb_testnum values(p_Boxnumber,p_usertype);      leave pr_dealtestnum_label;    end;    else    begin      leave pr_dealtestnum_label;    end;    end if;end;//delimiter ;select 'create procedure pr_dealtestnum ok';

优化三
MysqL入门

不管向tb_testnum表插入数据的 *** 作执行成功与否,都应该有一个标识值来表示执行的结果,这样也方便开发人员对程序流程的追踪和调试.也就是说,在每条leave语句之前,都应该有一个返回值,我们为此定义一个输出参数.修改之后的存储过程如下:MysqL入门

drop procedure if exists pr_dealtestnum;delimiter //create procedure pr_dealtestnum(  in  p_Boxnumber varchar(30),out  p_result   int -- 0-succ,other-fail)pr_dealtestnum_label:begin    declare p_usertype  int;    declare p_datacount int;    select count(*) into p_datacount from tb_testnum_tmp where Boxnumber=p_Boxnumber;    if p_datacount > 0 then    begin      select usertype into p_usertype from tb_testnum_tmp where Boxnumber=p_Boxnumber;    end;    else    begin      set p_result = 1;      leave pr_dealtestnum_label;    end;    end if;    select count(*) into p_datacount from tb_testnum where Boxnumber=p_Boxnumber;    if p_datacount = 0 then    begin      insert into tb_testnum values(p_Boxnumber,p_usertype);      set p_result = 0;      leave pr_dealtestnum_label;    end;    else    begin      set p_result = 2;      leave pr_dealtestnum_label;    end;    end if;end;//delimiter ;select 'create procedure pr_dealtestnum ok';

优化四
MysqL入门

我们注意到“insert into tb_testnum values(p_Boxnumber,p_usertype);”语句中,tb_testnum表之后没有列出具体的字段名,这个也是不规范的.如果在以后的软件版本中,tb_testnum表中新增了字段,那么这条insert语句极有可能会报错.因此,规范的写法是无论tb_testnum表中有多少字段,在执行insert *** 作时,都要列出具体的字段名.修改之后的存储过程如下:MysqL入门

drop procedure if exists pr_dealtestnum;delimiter //create procedure pr_dealtestnum(  in  p_Boxnumber varchar(30),out  p_result   int  -- 0-succ,other-fail)pr_dealtestnum_label:begin    declare p_usertype  int;    declare p_datacount int;    select count(*) into p_datacount from tb_testnum_tmp where Boxnumber=p_Boxnumber;    if p_datacount > 0 then    begin      select usertype into p_usertype from tb_testnum_tmp where Boxnumber=p_Boxnumber;    end;    else    begin      set p_result = 1;      leave pr_dealtestnum_label;    end;    end if;    select count(*) into p_datacount from tb_testnum where Boxnumber=p_Boxnumber;    if p_datacount = 0 then    begin      insert into tb_testnum(Boxnumber,usertype) values(p_Boxnumber,p_usertype);      set p_result = 0;      leave pr_dealtestnum_label;    end;    else    begin      set p_result = 2;      leave pr_dealtestnum_label;    end;    end if;end;//delimiter ;select 'create procedure pr_dealtestnum ok';

优化五
MysqL入门

在执行insert语句之后,要用MysqL中自带的@error_count参数来判断插入数据是否成功,方便开发人员跟踪执行结果.如果该参数的值不为0,表示插入失败,那么我们就用一个返回参数值来表示 *** 作失败.修改之后的存储过程如下:MysqL入门

drop procedure if exists pr_dealtestnum;delimiter //create procedure pr_dealtestnum(  in  p_Boxnumber varchar(30),out  p_result  int  -- 0-succ,other-fail)pr_dealtestnum_label:begin    declare p_usertype  int;    declare p_datacount int;    select count(*) into p_datacount from tb_testnum_tmp where Boxnumber=p_Boxnumber;    if p_datacount> 0 then    begin      select usertype into p_usertype from tb_testnum_tmp where Boxnumber=p_Boxnumber;    end;    else    begin      set p_result = 1;      leave pr_dealtestnum_label;    end;    end if;    select count(*) into p_datacount from tb_testnum where Boxnumber=p_Boxnumber;    if p_datacount = 0then    begin      insert into tb_testnum(Boxnumber,p_usertype);      if @error_count<>0 then      begin        set p_result= 3;      end;      else      begin        set p_result= 0;      end;      end if;    end;    else    begin      set p_result = 2;    end;    end if;    leave pr_dealtestnum_label;end;//delimiter ;select 'create procedure pr_dealtestnum ok';

总结
MysqL入门

从上面可以看出,一个短短的存储过程,就有这么多需要优化的地方,看来存储过程的编写也不是一件很简单的事情.确实,我们在编写代码(不仅仅是存储过程)的时候,一定要从代码的功能、可读性、性能等多方面来考虑,这样才能够写出优美的、具备较长生命周期的代码,进而开发出高质量的软件产品.希望本文能对大家学习MysqL存储过程有所帮助,也谢谢大家对内存溢出PHP的支持.MysqL入门

总结

以上是内存溢出为你收集整理的Mysql必读MySQL存储过程的优化实例全部内容,希望文章能够帮你解决Mysql必读MySQL存储过程的优化实例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1164184.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存