本文共 782 字,大约阅读时间需要 2 分钟。
【统计商户24个月连续流水总月数存储过程】
删除存储过程
SQL> drop procedure checklen;
Procedure dropped
创建存储过程
SQL> CREATE OR REPLACE PROCEDURE checklen(val in varchar2,resultval out number) as
maxlen number;
nowlen number;
begin
maxlen := 0;
nowlen := 0;
for i in 1..24 loop
if substr(val,i,1)='0' then
nowlen := 0;
else
nowlen := nowlen + 1;
if nowlen>maxlen then
maxlen := nowlen;
end if;
end if;
end loop;
resultval := maxlen;
END;
/
打开屏幕输出
set serveroutput on;
测试存储过程
declare
resultval number;
begin
checklen('111000000000000000011110',resultval);
dbms_output.put_line(resultval);
end;
/
4
PL/SQL procedure successfully completed
刘盛 Leonarding
2016.1.14
北京&winter
分享技术~成就梦想
Blog:www.leonarding.com
如果喜欢我的文章就请扫下面二维码吧!关注微信号:leonarding_public
在这里你能得到技术、实事、热点消息等新兴事物的思考和观点,别的地方可能没有的东西。我将为大家提供最新技术与资讯动态,传递正能量。
转载地址:http://nxcax.baihongyu.com/