//创建存储过程
create proc usp_add
@num int,
@num1 int
as
begin
select @num+@num1
end
//调用存储过程
exec usp_add @num=1,@num1=3