标签:sql 详解 weight 基本 info font class code select
基本存储过程
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 详解 weight 基本 info font class code select
原文地址:https://www.cnblogs.com/zj19940610/p/9655746.html