当前位置: 代码迷 >> SQL >> SQL Server创设存储过程和删除存储过程
  详细解决方案

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

热度:65   发布时间:2016-05-05 12:54:03.0
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
  相关解决方案