我正在尝试编写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
即使我尝试使用存储过程,它也不起作用。