我想在 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
调试此存储过程的最佳方法是什么?