MSSQL与Oracle存储过程遍历数据表

MSSQL   

  declare @Var1 varchar(30)

declare my_cursor cursor for select Cloum1 from Table1 where GoodsMovementid=@GoodsmovementID

set @Var2=(select Cloum2 from Table2 where ....)

open my_cursor

    fetch  from my_cursor into @Var1 while @@FETCH_STATUS=0/*打开并指向第一行*/

          begin

   if(@Var1 ='0.00000000')

begin 

                        something you want to do

                        end 

else

begin

       fetch next from my_cursor into @Var1 ;/*打开并指向下一行*/

end

     end

    close my_cursor

    DEALLOCATE my_cursor

Oracle

     Cursor getrecorde is  select TaxExPrice from GoodsMovementItem where GoodsMovementid=p_GoodsmovementID;

     Var1  NUMBER(20,8);

      Var2  Varchar2(50);

        BEGIN

          select Cloum1 into  Var1  from Table1 where ....;
          if (Var1  ='201')then 
              open getrecorde ;
              loop 
                fetch getrecorde into TaxPrice;
                exit when getrecorde%notfound;
                you want to do......
              end loop;
              close getrecorde;
           end if;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值