码迷,mamicode.com
首页 > 数据库 > 详细

Sql Server存储过程详解

时间:2018-09-16 16:11:37      阅读:164      评论:0      收藏:0      [点我收藏+]

标签: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 Server存储过程详解

标签:sql   详解   weight   基本   info   font   class   code   select   

原文地址:https://www.cnblogs.com/zj19940610/p/9655746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!