1

可能重复:
调试 SQL Server 2008 中的存储过程

我想在 sql server 中调试存储过程。我尝试了断点,但这对我不起作用。我什至在堆栈中进行了搜索,但没有得到正确的答案。我的程序如下,

USE [Practice]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER procedure [dbo].[selectsample]
@input varchar(100),
@output int output
as
begin 
select @output=id
from people where name=@input order by id desc  
end

调试此存储过程的最佳方法是什么?

4

1 回答 1

0

尝试将前 1 名添加到您的查询中。您有一个输出参数,但您的查询可以返回多个值(如果有更多人满足 name=@input 条件怎么办)

于 2013-02-05T08:06:55.527 回答