处理 XQuery 中的命名空间
本主题提供了有关处理查询中的命名空间的示例。
示例
A. 声明一个命名空间
下面的查询将检索特定产品型号的生产步骤。
SELECT Instructions.query('
declare namespace AWMI="https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions";
/AWMI:root/AWMI:Location[1]/AWMI:step
') as x
FROM Production.ProductModel
WHERE ProductModelID=7
下面是部分结果:
<AWMI:step xmlns:AWMI="https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions">Insert <AWMI:material>aluminum sheet MS-2341</AWMI:material> into the <AWMI:tool>T-85A framing tool</AWMI:tool>. </AWMI:step>
…
请注意,namespace 关键字用于定义新的命名空间前缀“AWMI:”。随后必须在查询中对该命名空间范围内的所有元素使用此前缀。
B. 声明默认的命名空间
在上面的查询中,定义了一个新的命名空间前缀。随后必须在查询中使用该前缀来选择所需的 XML 结构。或者,也可以将命名空间声明为默认命名空间,如以下修改后的查询所示:
SELECT Instructions.query('
declare default element namespace "https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions";
/root/Location[1]/step
') as x
FROM Production.ProductModel
where ProductModelID=7
下面是查询结果。
<step xmlns="https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions">Insert <material>aluminum sheet MS-2341</material> into the <tool>T-85A framing tool</tool>. </step>
…
请注意,在此示例中,使定义的命名空间 "https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelManuInstructions" 覆盖了默认命名空间(空命名空间)。因此,用于查询的路径表达式中将不再含有命名空间前缀。并且,显示在结果中的元素名称中也不再含有命名空间前缀。另外,默认命名空间适用于所有元素,但不适用于它们的属性。
C. 在 XML 构造中使用命名空间
定义新的命名空间时,不仅要将它们引入查询范围,还要将它们引入构造范围。例如,构造 XML 时,可以使用“declare namespace ...”声明定义一个新的命名空间,然后将该命名空间用于所构造的要在查询结果内显示的任何元素和属性。
SELECT CatalogDescription.query('
declare default element namespace "https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription";
declare namespace myNS="uri:SomeNamespace";<myNS:Result>
{ /ProductDescription/Summary }
</myNS:Result>
') as Result
FROM Production.ProductModel
where ProductModelID=19
结果如下:
<myNS:Result xmlns:myNS="uri:SomeNamespace">
<Summary xmlns="https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription">
<p1:p xmlns:p1="http://www.w3.org/1999/xhtml">
Our top-of-the-line competition mountain bike. Performance-enhancing
options include the innovative HL Frame, super-smooth front
suspension, and traction for all terrain.</p1:p>
</Summary>
</myNS:Result>
或者,也可以在命名空间用作 XML 构造的一部分的每个位置显式定义命名空间,如以下查询所示:
SELECT CatalogDescription.query('
declare default element namespace "https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription";
<myNS:Result xmlns:myNS="uri:SomeNamespace">
{ /ProductDescription/Summary }
</myNS:Result>
') as Result
FROM Production.ProductModel
where ProductModelID=19
D. 使用默认命名空间进行构造
您还可以定义要在 XML 构造中使用的默认命名空间。例如,下面的查询显示了如何指定默认命名空间 "uri:SomeNamespace"\,以便将其用作所构造的本地命名元素(例如 <Result> 元素)的默认命名空间。
SELECT CatalogDescription.query('
declare namespace PD="https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription";
declare default element namespace "uri:SomeNamespace";<Result>
{ /PD:ProductDescription/PD:Summary }
</Result>
') as Result
FROM Production.ProductModel
where ProductModelID=19
结果如下:
<Result xmlns="uri:SomeNamespace">
<PD:Summary xmlns:PD="https://schemas.microsoft.com/sqlserver/2004/07/adventure-works/ProductModelDescription">
<p1:p xmlns:p1="http://www.w3.org/1999/xhtml">
Our top-of-the-line competition mountain bike. Performance-
enhancing options include the innovative HL Frame, super-smooth
front suspension, and traction for all terrain.</p1:p>
</PD:Summary>
</Result>
请注意,通过覆盖元素的默认命名空间(空命名空间),XML 构造中的所有本地命名元素随后将被绑定到覆盖的默认命名空间。因此,如果在构造 XML 时需要灵活利用空命名空间,则不要覆盖元素的默认命名空间。