基于序列的函数 - id
适用范围:SQL Server
返回与$arg中提供的一个或多个 xs:ID 值匹配的 xs:ID 值的元素节点序列。
语法
fn:id($arg as xs:IDREF*) as element()*
参数
$arg
一个或多个 xs:IDREF 值。
注解
此函数的结果是 XML 实例中的一组元素(以文档顺序),其中有 xs:ID 值等于候选 xs:IDREF 列表中的一个或多个 xs:IDREF 值。
如果 xs:IDREF 值不匹配任何元素,则该函数返回空序列。
示例
本主题针对存储在数据库中各种 xml 类型列中AdventureWorks2022
的 XML 实例提供 XQuery 示例。
A. 基于 IDREF 属性值检索元素
以下示例使用 fn:id 基于 IDREF 管理器属性检索 <employee
> 元素。 在此示例中,manager 属性是一个 IDREF 类型的属性,eid 属性是一个 ID 类型的属性。
对于特定的管理器属性值, id() 函数查找 <employee
> ID 类型属性值与输入 IDREF 值匹配的元素。 换句话说,对于特定员工, id() 函数返回员工经理。
在该示例中执行下列操作:
创建一个 XML 架构集合。
使用 XML 架构集合创建类型化的 xml 变量。
查询检索元素的 ID 属性值由元素的<
employee
>管理器 IDREF 属性引用。
-- If exists, drop the XML schema collection (SC).
-- drop xml schema collection SC
-- go
create xml schema collection SC as
'<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:e="emp" targetNamespace="emp">
<element name="employees" type="e:EmployeesType"/>
<complexType name="EmployeesType">
<sequence>
<element name="employee" type="e:EmployeeType" minOccurs="0" maxOccurs="unbounded" />
</sequence>
</complexType>
<complexType name="EmployeeType">
<attribute name="eid" type="ID" />
<attribute name="name" type="string" />
<attribute name="manager" type="IDREF" />
</complexType>
</schema>'
go
declare @x xml(SC)
set @x='<e:employees xmlns:e="emp">
<employee eid="e1" name="Joe" manager="e10" />
<employee eid="e2" name="Bob" manager="e10" />
<employee eid="e10" name="Dave" manager="e10" />
</e:employees>'
select @x.value(' declare namespace e="emp";
(fn:id(e:employees/employee[@name="Joe"]/@manager)/@name)[1]', 'varchar(50)')
Go
该查询返回值“Dave”。 这表示 Dave 是 Joe 的经理。
B. 基于 OrderList IDREFS 属性值检索元素
在以下示例中,元素的 <Customer
> OrderList 属性是 IDREFS 类型属性。 它列出特定客户的订单 ID。 对于每个订单 ID,提供订单值下>Customer
<有一个<Order
>元素子元素。
查询表达式 data(CustOrders:Customers/Customer[1]/@OrderList)[1]
检索第一个客户的 IDRES 列表中的第一个值。 然后,此值将 传递给 id() 函数。 然后,该函数查找 <Order
> OrderID 属性值与 id() 函数的输入匹配的元素。
drop xml schema collection SC
go
create xml schema collection SC as
'<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:Customers="Customers" targetNamespace="Customers">
<element name="Customers" type="Customers:CustomersType"/>
<complexType name="CustomersType">
<sequence>
<element name="Customer" type="Customers:CustomerType" minOccurs="0" maxOccurs="unbounded" />
</sequence>
</complexType>
<complexType name="OrderType">
<sequence minOccurs="0" maxOccurs="unbounded">
<choice>
<element name="OrderValue" type="integer" minOccurs="0" maxOccurs="unbounded"/>
</choice>
</sequence>
<attribute name="OrderID" type="ID" />
</complexType>
<complexType name="CustomerType">
<sequence minOccurs="0" maxOccurs="unbounded">
<choice>
<element name="spouse" type="string" minOccurs="0" maxOccurs="unbounded"/>
<element name="Order" type="Customers:OrderType" minOccurs="0" maxOccurs="unbounded"/>
</choice>
</sequence>
<attribute name="CustomerID" type="string" />
<attribute name="OrderList" type="IDREFS" />
</complexType>
</schema>'
go
declare @x xml(SC)
set @x='<CustOrders:Customers xmlns:CustOrders="Customers">
<Customer CustomerID="C1" OrderList="OrderA OrderB" >
<spouse>Jenny</spouse>
<Order OrderID="OrderA"><OrderValue>11</OrderValue></Order>
<Order OrderID="OrderB"><OrderValue>22</OrderValue></Order>
</Customer>
<Customer CustomerID="C2" OrderList="OrderC OrderD" >
<spouse>John</spouse>
<Order OrderID="OrderC"><OrderValue>33</OrderValue></Order>
<Order OrderID="OrderD"><OrderValue>44</OrderValue></Order>
</Customer>
<Customer CustomerID="C3" OrderList="OrderE OrderF" >
<spouse>Jane</spouse>
<Order OrderID="OrderE"><OrderValue>55</OrderValue></Order>
<Order OrderID="OrderF"><OrderValue>55</OrderValue></Order>
</Customer>
<Customer CustomerID="C4" OrderList="OrderG" >
<spouse>Tim</spouse>
<Order OrderID="OrderG"><OrderValue>66</OrderValue></Order>
</Customer>
<Customer CustomerID="C5" >
</Customer>
<Customer CustomerID="C6" >
</Customer>
<Customer CustomerID="C7" >
</Customer>
</CustOrders:Customers>'
select @x.query('declare namespace CustOrders="Customers";
id(data(CustOrders:Customers/Customer[1]/@OrderList)[1])')
-- result
<Order OrderID="OrderA">
<OrderValue>11</OrderValue>
</Order>
实现限制
限制如下:
SQL Server 不支持 id()的双参数版本。
SQL Server 要求 id() 的参数类型为 xs:IDREF* 的子类型。