将参数传递给SQL Server存储过程

时间:2015-05-01 20:46:52

标签: sql-server stored-procedures

我正在尝试编写SQL查询,但是当我尝试使用参数时,存储过程无效。

示例:

select * 
from Table1 
where Name = 'BEST People'     // this works

// this does not show any rows
declare @Name nvarchar(128)
set @Name= 'BEST People'

select * 
from Table1 
where Name = @Name

即使我尝试使用存储过程,它也不起作用。

0 个答案:

没有答案