`

SQL Server创建存储过程和删除存储过程

 
阅读更多
创建存储过程:
create procedure dbo.order_account
@@merchantId varchar(30),
@@totalAmount numeric(15,3)=0 output
AS
DECLARE @tempAmount numeric(15,3)
select @tempAmount = sum(fd_tx_money) from tb_order where fd_merchant_id=@@merchantId
set @@totalAmount = @tempAmount

删除存储过程:
drop proc order_account
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics