mysql智能存储过程
程序员文章站
2022-04-26 11:09:18
...
创建存储过程:
CREATE procedure ordertotal( in onumber int, in taxable boolean, out ototal decimal(8,2) ) COMMENT 'Obtain order total,optionally adding tax' begin DECLARE total decimal(8,2); declare taxrate int DEFAULT 6; SELECT sum(item_price * quantity) from orderitems where order_num = onumber into total; if taxable then SELECT total+(total/100*taxrate) into total; end if; SELECT total into ototal;
end;
调用存储过程:taxable为真
call ordertotal(20005,1,@total);
SELECT @total;
调用存储过程:taxable为假
call ordertotal(20005,1,@total);
SELECT @total;
以上就是mysql智能存储过程的内容,更多相关内容请关注PHP中文网(www.php.cn)!
推荐阅读
-
存储过程学习笔记(SQL数据库)
-
mysql存储过程之循环语句(WHILE,REPEAT和LOOP)用法分析
-
如何将mysql存储位置迁移到一块新的磁盘上
-
MySQL存储时间类型选择的问题讲解
-
php调用MySQL存储过程的方法集合(推荐)
-
Java与MySQL时间戳传递/存储/协调问题--userLegacyDatetimeCode--userTimezone--serverTimezone
-
详解MySQL实现主从复制过程
-
MySQL5.7.18下载和安装过程图文详解
-
MySQL5.7.03 更换高版本到MySQL 5.7.17安装过程及发现问题解决方案
-
详解标准mysql(x64) Windows版安装过程