Sql Server 存储过程调用存储过程接收输出参数返回值
程序员文章站
2022-08-20 21:29:08
创建存储过程:
alter procedure [dbo].[getcustomers]
(@rowcount int output)
as
s...
创建存储过程:
alter procedure [dbo].[getcustomers] (@rowcount int output) as select [customerid] ,[companyname] ,[contactname] ,[contacttitle] ,[address] ,[city] ,[region] ,[postalcode] ,[country] ,[phone] ,[fax] from [northwind].[dbo].[customers] set @rowcount=@@rowcount
接收输出参数:
declare @count int execute getcustomers @count output print @count
2,带返回值
创建存储过程:
alter procedure [dbo].[getcustomers] as select [customerid] ,[companyname] ,[contactname] ,[contacttitle] ,[address] ,[city] ,[region] ,[postalcode] ,[country] ,[phone] ,[fax] from [northwind].[dbo].[customers] return @@rowcount
接收返回值:
declare @count int execute @count=getcustomers print @count
以上所述是小编给大家介绍的sql server 存储过程调用存储过程接收输出参数返回值,希望对大家有所帮助
上一篇: 厦门有什么看海的地方?厦门哪里看海好?
下一篇: 暑假最值得去的旅游景点 暑假哪里好玩
推荐阅读
-
SQL Server 存储过程 数组参数 (How to pass an array into a SQL Server stored procedure)
-
SQL Server存储过程输入参数使用表值
-
Exec msdb.dbo.sp_send_dbmail 参数详解(SQL Server 存储过程发邮件)
-
sql server通过临时存储过程实现使用参数添加文件组脚本复用
-
SQL SERVER调用存储过程小结
-
PHP调用MsSQL Server 2012存储过程获取多结果集(包含output参数)的详解
-
sql server使用临时存储过程实现使用参数添加文件组脚本复用
-
SQL Server存储过程中使用表值作为输入参数示例
-
Sql Server 存储过程调用存储过程接收输出参数返回值
-
在SQL Server数据库中执行存储过程很快,在c#中调用很慢的问题