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$
调用存储过程
call p1(2)
删除存储过程
语法:drop procedure 存储过程的名称
上一篇: 图论——AOE网络及关键路径