Sql Server存储过程详解
Posted zj19940610
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sql Server存储过程详解相关的知识,希望对你有一定的参考价值。
基本存储过程
if (exists (select * from sys.objects where name = ‘GetUser‘)) drop proc GetUser --判断存储过程是否存在,存在则删除然后重建。 go create proc GetUser --创建存储过程 GetUser @Id int --参数 as set nocount on; --不返回计数,提高应用程序性能 begin --开始 select * from [dbo].[User] where Id=@Id --执行sql语句 end;--结束
调用存储过程
EXEC GetUser 1;
执行结果
以上是关于Sql Server存储过程详解的主要内容,如果未能解决你的问题,请参考以下文章