你的位置:首页 > 软件开发 > ASP.net > 在创建带输出参数和返回值的存储过程时

在创建带输出参数和返回值的存储过程时

发布时间:2016-04-07 17:00:08
异常处理汇总-数据库系列 http://www.cnblogs.com/dunitian/p/4522990.html后期会在博客首发更新:http://dnt.dkill.net/Article/Detail/313错误如图,怎么执行都没有自己想要的效果(return掉了 ...

异常处理汇总-数据库系列  http://www.cnblogs.com/dunitian/p/4522990.html

后期会在博客首发更新:http://dnt.dkill.net/Article/Detail/313

错误如图,怎么执行都没有自己想要的效果(return掉了,还有个啥???!!!)

在创建带输出参数和返回值的存储过程时

处理后:

在创建带输出参数和返回值的存储过程时

if exists(select * from sysobjects where name='usp_AllPmsTest')	drop proc usp_AllPmsTestgocreate proc usp_AllPmsTest@cityName nvarchar(30),@id int outputasbegin	insert into ShopModelBak values(@cityName,1,1)	set @id=@@identity	select CPName,CName,SName,MType,MName,Mprice from ShopMenu 	inner join ShopModel on ShopMenu.MShopId=ShopModel.SId	inner join View_CityData on ShopMenu.MCityId=CId	where CName=@cityName	return (select count(1) from ShopMenu)endgodeclare @total int,@id intexec @total=usp_AllPmsTest '滨湖区',@id outputselect @id Id,@total total

 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:在创建带输出参数和返回值的存储过程时

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录