1. 程式人生 > >建立mssql 儲存過程

建立mssql 儲存過程

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 [email protected]@merchantId 
set @@totalAmount = @tempAmount 
 
刪除儲存過程:
 
drop proc order_account

新建查詢,貼程式碼,F5執行