更新库存数据,先进先出存储过程

--> 测试数据: t

If not object_id('[t]') is null
 Drop table [t]
Go

create table t(id int,number numeric(5,1))
insert into t
select 1,20.0 union all
select 2,30.0 union all
select 3,40.0
go

If not object_id('[wsp]') is null
 Drop proc [wsp]
Go
create proc wsp
@cost int         --销售量
as
--先得出该货物的库存是否够
declare @spare int --剩余库存
select @spare=sum(number) from t
if(@spare>=@cost)
begin
   
--根据入库日期采用先进先出原则对货物的库存进行处理
    update t set number=
   
case when (select @cost-isnull(sum(number),0) from t where id<=a.id)>=0
   
then 0
   
else
       
case  when (select @cost-isnull(sum(number),0) from t where id<a.id)>0 then
        a.
number-(select @cost-isnull(sum(number),0) from t where id<a.id)
       
else a.number end
   
end
   
from t a
end
else
   
raiserror('库存不足',16,1)   
   
return
go



exec wsp 30

select * from t

 

/*

id          number
----------- ---------------------------------------
1           0.0
2           20.0
3           40.0

 

(3 行受影响)

*/


http://topic.csdn.net/u/20090806/20/09c8f9bd-493d-49e1-a662-2909757c3511.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值