'sp_executesql'附近的语法不正确

时间:2009-08-18 22:54:23

标签: sql sql-server-2005 tsql dynamic-sql

我不明白为什么以下是给我错误的。我认为它与注释掉的部分有关,但是@SQL是nvarchar(4000)。

BEGIN
  sp_executesql N'SELECT ''td'''
  --sp_executesql @SQL, N'@StartDate DateTime, @EndDate DateTime, @End2 DateTime, @Program varchar(4)', @StartDate, @EndDate, @End2, @Program
END

3 个答案:

答案 0 :(得分:13)

这就是原因:

-- This works just fine:
BEGIN
  -- You must have an exec before your sp_executesql or it will not work in a block
  exec sp_executesql N'SELECT ''td'''
END

当你在一个街区时,你不能只在没有 exec 的情况下调用存储过程。

答案 1 :(得分:3)

你为什么把它包含在BEGIN ... END中?在外部运行sp_executesql将运行。

您可以选择在sp_executesql之前放置 exec

答案 2 :(得分:0)

在某些情况下我也必须使用主人:

exec master..sp_executesql