统计商户24个月连续流水总月数存储过程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计商户24个月连续流水总月数存储过程相关的知识,希望对你有一定的参考价值。
【统计商户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://leonarding.blog.51cto.com/6045525/1737753
以上是关于统计商户24个月连续流水总月数存储过程的主要内容,如果未能解决你的问题,请参考以下文章