mysql存储过程的游标和控制结构
发布时间:2020-05-23 10:14:08 所属栏目:MySql 来源:互联网
导读:mysql存储过程的游标和控制结构
|
下面是脚本之家 jb51.cc 通过网络收集整理的代码片段。 脚本之家小编现在分享给大家,也给大家做个参考。 DELIMITER $$
DROP PROCEDURE IF EXISTS `books`.`largest_order`$$
CREATE DEFINER=`root`@`192.168.18.248` PROCEDURE `largest_order`(out largest_id int)
BEGIN
declare this_id int;
declare this_amount float;
declare l_amount float default 0.0;
declare l_id int;
declare done int default 0;
declare cl cursor for select orderid,amount from orders;
declare continue handler for sqlstate '02000' set done =1;
open cl;
repeat
fetch cl into this_id,this_amount;
if not done then
if this_amount > l_amount then
set l_amount = this_amount;
set l_id = this_id;
end if;
end if;
until done end repeat;
close cl;
set largest_id = l_id;
END$$
DELIMITER ;
以上是脚本之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。 如果觉得脚本之家网站内容还不错,欢迎将脚本之家网站推荐给程序员好友。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
