欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mysql的存储过程

程序员文章站 2024-03-25 21:28:04
...

存储过程:
概念类似于函数,就是把一段代码封装起来。当要执行这一段代码的时候,可以通过调用该存储过程来实现。在封装的语句体里面,可以用if/else case while 等控制结构。可以进行sql编程。
添加存储过程

delimiter $
create procedure p8(price float,str char(1))
begin
         if str='h' then
         select  id,goods_name,shop_price from goods  where shop_price>=price;
         else
         select  id,goods_name,shop_price from goods  where shop_price<price;
         end if;
end$

mysql的存储过程
调用存储过程

call p1(2)

mysql的存储过程删除存储过程

语法:drop    procedure    存储过程的名称

mysql的存储过程

相关标签: php