sp_get_query_template (Transact-SQL)
返回参数化格式的查询。 返回的结果模拟使用强制参数化得到的参数化格式的查询。 sp_get_query_template 主要在创建 TEMPLATE 计划指南时使用。
语法
sp_get_query_template
[ @querytext = ] N'query_text'
, @templatetext OUTPUT
, @parameters OUTPUT
参数
'query_text'
要生成参数化版本的查询。 'query_text' 必须用英文单引号引起来,并且前面带有 Unicode 说明符 N。 N'query_text' 是分配给 @querytext 参数的值。 该值的类型为 nvarchar(max)。@templatetext
按指示提供的 nvarchar(max) 类型的输出参数,用于以字符串文字的形式接收参数化格式的 query_text。@parameters
按指示提供的 nvarchar(max) 类型的输出参数,用于接收使用 @templatetext 参数化的参数名和数据类型的字符串文字。
注释
在发生以下情况时,sp_get_query_template 将返回错误:
它不会参数化 query_text 中的任何常量文字值。
query_text 为 NULL,不是 Unicode 字符串,语法无效或无法编译。
如果 sp_get_query_template 返回错误,则它不会修改 @templatetext 和 @parameters 输出参数的值。
权限
要求具有 public 数据库角色的成员身份。
示例
以下示例返回包含两个常量文字值的参数化格式的查询。
USE AdventureWorks2012;
GO
DECLARE @my_templatetext nvarchar(max)
DECLARE @my_parameters nvarchar(max)
EXEC sp_get_query_template
N'SELECT pi.ProductID, SUM(pi.Quantity) AS Total
FROM Production.ProductModel pm
INNER JOIN Production.ProductInventory pi
ON pm.ProductModelID = pi.ProductID
WHERE pi.ProductID = 2
GROUP BY pi.ProductID, pi.Quantity
HAVING SUM(pi.Quantity) > 400',
@my_templatetext OUTPUT,
@my_parameters OUTPUT;
SELECT @my_templatetext;
SELECT @my_parameters;
下面是 @my\_templatetext OUTPUT 参数的参数化结果:
select pi . ProductID , SUM ( pi . Quantity ) as Total
from Production . ProductModel pm
inner join Production . ProductInventory pi
on pm . ProductModelID = pi . ProductID
where pi . ProductID = @0
group by pi . ProductID , pi . Quantity
having SUM ( pi . Quantity ) > 400
请注意,第一个常量文字 2 将转换为参数。 第二个文字 400 未转换,因为它包含在 HAVING 子句中。 如果 ALTER DATABASE 的 PARAMETERIZATION 选项设置为 FORCED,sp_get_query_template 返回的结果将模拟参数化格式的查询。
下面是 @my\_parameters OUTPUT 参数的参数化结果:
@0 int
注意 |
---|
在 SQL Server 的快速修复工程、Service Pack 和版本升级之间,sp_get_query_template 输出中的参数顺序和命名可能会发生变化。 另外,升级会导致同一查询的不同的常量文字集被参数化,并且对两种输出参数的结果应用不同的文本间距。 |