如何在sql中的动态查询中传递变量

时间:2010-06-11 12:00:16

标签: sql dynamic-queries

我使用动态查询传递变量

select a.TableName, COUNT(a.columnvalue) as '+'count'+' from Settings a
where a.ColumnValue in ('+ @columnvalue +') and a.Value in (' + @value +')

the @columnvalues = 'a','b','c'
@value ='comm(,)','con(:)'

如何在动态查询中传递此内容

任何想法???

1 个答案:

答案 0 :(得分:3)

我会使用sp_executesql命令。

此处提供了更多文档:http://msdn.microsoft.com/en-us/library/ms188001.aspx

基本上,您定义了一个sql查询和参数列表,然后将它们与您的实际参数一起传递到该方法中。

所以,像这样(真正的基本)

CREATE PROCEDURE dbo.yourProc
  @customerId INT
AS
DECLARE @sql NVARCHAR(1000)
SET @sql = 'SELECT * FROM Customers WHERE CustomerId = @customerId'

DECLARE @params NVARCHAR(1000)
SET @params = '@customerId INT'

EXEC dbo.sp_executesql @sql, @params, @customerId