MySQL ------ 存储过程简单使用(二十五 ---2)
时间:2021-07-01 10:21:17
帮助过:24人阅读
-- 存储过程的名字时 : proce_ordertotal
-- 主要参数: onumber = order number
-- taxable = 0 if not taxable,1 if taxable
-- ototal = order total variable
create procedure proce_ordertotal
( in onumber
int,
in taxable boolean,out ototal
decimal(
8,
1)
) comment ‘Obtain order total, optionally adding tax‘
begin
-- 创建一个名为 total的局部变量,类型时decimal
declare total
decimal(
8,
1);
-- 创建一个名为 taxrate 的变量,类型时 int 默认值时6
declare taxrate
int default 6;
-- 获取订单编号为 onumber 的总数
select sum(item_price
*quantity)
from orderitems
where order_num
= onumber
into total;
-- 判断是否是真
if taxable
then
-- 如果是真 表示要收税,总共要收 总价*1.06 结果赋给 total
select total
+(total
/100*taxrate)
into total;
end if ;
-- 最后将 total 符给 ototal
select total
into ototal;
end $$
注意:
1、DECLARE 用于在存储过程体中增加局部变量,需要指定变量名和变量类型,可以给其默认值
2、COMMENT关键字使用在创建存储过程语句中,可写可不写,写的话会在show procedure status 的结果里显示
3、BOOLEAN 指定 1 表示真,0 表示假(实际上非零值都考虑为真,只有0视为假)
4、Mysql IF 语句基本用法(if --- then--),而且If语句还支持ELSEIF 和 else 子句(前者还是用THEN子句,后者不需要),SQL server中支持 case when then else
上述中,增加了注释(--),在复杂的存储过程中,注释时很有必要的,添加了另一个参数taxable(布尔值,增加税为真,否则为假)。
在存储过程体中,使用 declare 语句定义了两个局部变量,使用时需要给出变量名和数据类型,也支持可选的默认值(上述设置为 6%),select 语句发生了改变,将结果存储到 局部变量tota中,if 语句检查taxable 是否为真,如果为真使用另一条select语句增加到营业税到局部变量total 中,最后另一条select 语句将taotal (可能包含税也可能不包含)保存到ototal中。
查看一下:
MySQL ------ 存储过程简单使用(二十五 ---2)
标签:sele lse 布尔 ant 实现 pre 关键字 设置 proc