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存储过程详解的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server 存储过程详解

SQL Server存储过程(数据库引擎)使用详解

SQL Server存储过程文本加密与解密过程详解 2019版可用

SQL Server 触发器事务以及存储过程详解

SQL server 创建触发器详解

无法从存储过程显示文本到 textview - Android SQL Server