oracle存储过程实例详解_oracle数据库存储过程

oracle存储过程实例详解_oracle数据库存储过程Create Or Replace procedure loop_while_xlxxb( start_value in date, end_value in date)is current_value date:= start_value; current_djz number:=…

oracle存储过程实例详解_oracle数据库存储过程"

Create Or Replace procedure loop_while_xlxxb
(
   start_value in date,
   end_value in date
)
is
   current_value date:= start_value;
   current_djz number:=1;
   current_xqj number:=0;
   current_sfjq varchar2(20):='';
   current_num number:=1;
   current_z_y number:=0;
  
begin
  while current_value <=end_value
    LOOP 
      begin
       
         select case to_char(current_value,'day')
            when '星期一' then 1
            when '星期二' then 2
            when '星期三' then 3
            when '星期四' then 4
            when '星期五' then 5
            when '星期六' then 6
            when '星期日' then 7
            else 0 end
              into current_xqj
                 from dual;
      
      select  case current_xqj
                when 7 then ''
                when 6 then ''
                  else '' end
                    into current_sfjq
                    from dual;
                    
      select (to_char(current_value,'iw')-to_char(start_value,'iw'))+1 into current_z_y from dual;
                    
      select ceil(current_num/7) into current_djz from dual;
      
      current_djz :=current_z_y;
      insert into xlxxb(xn,xq,nyr,djz,xqj,sfjq)
                 values('2015-2016','2'
                            ,to_char(current_value,'yyyy-mm-dd')
                            ,current_djz
                            ,current_xqj
                            ,current_sfjq
          );
          
           current_value:=current_value+1;
           current_num :=current_num+1;
      end;
    end LOOP;        
end loop_while_xlxxb;
begin
  loop_while_xlxxb(to_date('2015-09-01','yyyy-mm-dd'),to_date('2015-12-31','yyyy-mm-dd'));
  commit;
  end;

 

今天的文章oracle存储过程实例详解_oracle数据库存储过程分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/52566.html

(0)
编程小号编程小号
上一篇 2023-08-31 12:06
下一篇 2023-08-31 12:11

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注