SqlServer 獲得預存程序的傳回值(參數返回),別玩了output

來源:互聯網
上載者:User

標籤:style   color   os   strong   for   re   

declare @dingdanid int declare @fanhuizhi int

set @dingdanid = 1

exec 檢測訂單出庫資格 @dingdanid ,@fanhuizhi output   (注意別忘了output否則傳回值是NULL)

select @fanhuizhi

 

 

create proc dbo.檢測訂單出庫資格

@dingdanID int,     @returnValue int output

as

 

-- 輸入變數 訂單編號

set @returnValue = 1

-- 監測訂單的出庫資格

-- 如果已出庫,返回0

-- 如果未出庫並且該訂單所屬的總成需求量均小於等於庫存,即滿足出庫狀態,返回1e;否則返回0

 

if ‘已出庫‘ = (select 訂單狀態 from 訂單1 where 訂單編號 = @dingdanID)

begin

   set @returnValue = 0

   return @returnValue

end

 

 declare @zongchengID nvarchar(50)

 declare @chazhi      int

DECLARE Employee_Cursor CURSOR FOR select 訂單2.總成編號,(庫存量- sum(訂單2.需求數量)) as 差值  from 訂單2 , 總成表  where 訂單編號[email protected] and 訂單2.總成編號 = 總成表.總成編號  group by 訂單2.總成編號,庫存量 OPEN Employee_Cursor

FETCH NEXT FROM Employee_Cursor into  @zongchengID,@chazhi

WHILE @@FETCH_STATUS = 0 BEGIN

    if(@chazhi <0 )

    begin     set @returnValue = 0    

    return @returnValue   

    break

    end

    FETCH NEXT FROM Employee_Cursor into  @zongchengID,@chazhi END

    CLOSE Employee_Cursor

    DEALLOCATE Employee_Cursor

   return @returnValue

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.