SqlServer 存储过程

Posted wskxy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SqlServer 存储过程相关的知识,希望对你有一定的参考价值。

1.表

  技术图片

2.无参

ALTER PROCEDURE kxy_proc
AS
BEGIN
  update Student set Age=Age+1 where ID=1
END

  调用

exec kxy_proc

3.有输入参数

ALTER PROCEDURE kxy_proc
  @id int,
  @name varchar(10)
AS
BEGIN
  update Student set Age=Age+1 where [email protected] and Name=@name
END

  调用

exec kxy_proc 1,kxy

 4.有输出参数

ALTER PROCEDURE kxy_proc
  @id int,
    @age int OUTPUT
AS
BEGIN
  SELECT @age=s.Age from Student s WHERE s.ID=@id;
end

  调用

DECLARE @age int
exec kxy_proc 1,@age OUTPUT
SELECT @age as age

 

以上是关于SqlServer 存储过程的主要内容,如果未能解决你的问题,请参考以下文章

求助,sqlserver2005存储过程如何返回这样的结果集

sqlserver利用存储过程去除重复行的sql语句

sqlserver 怎么更新存储过程

我写了一段存储过程 是SQLSERVER的代码如下:

sqlserver 存储过程 返回结果集的 例子

存储过程详解 -SQLServer