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

sql server存储过程

时间:2015-08-25 23:09:42      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

在调用有参数的存储过程时,传入的参数一定要与存储过程声明的参数顺序一样,

例如:一下定义了一个usps_Find存储过程,需要传入两个参数isExist(output传出参数),name

 1 create proc usp_Find
 2 
 3 @isExist int output,
 4 @name nvarchar(50) 
 5 
 6 as 
 7 begin
 8     if exists (select * from UserInfo where userName=@name)
 9       begin
10       set @isexist=1
11       end
12     else
13       begin
14       set @isexist=0
15       end
16 end

在调用上面存储过程时应该这样写

declare @isExist int
exec usp_Find @isExist output,马云‘  --写成这样:exec usp_Find ‘马云‘,@isExist output会报错

 

sql server存储过程

标签:

原文地址:http://www.cnblogs.com/taohonggou/p/4758621.html

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