我有一个带有 XML 数据类型列的数据库表。该列包含如下值:
<NameValuePairCollection>
<NameValuePair Name="Foo" Value="One" />
<NameValuePair Name="Bar" Value="Two" />
<NameValuePair Name="Baz" Value="Three" />
</NameValuePairCollection>
我正在尝试查询 XML 数据类型列的值为 for 的所有"One"
行"Foo"
。我无法创建适当的 XQuery 来过滤结果。
我发现了几个相关的 SO 问题,这些问题对我的尝试有所帮助,但我仍然无法让它发挥作用。
如何查询 SQL Server XML 列中的值 在 SQL
Server XML 数据类型上使用 LIKE 语句
这是我到目前为止的SQL:
select *
from MyTable
where [XmlDataColumn].value('((/NameValuePairCollection/NameValuePair)[@Name="Foo"])[@Value]', 'varchar(max)') = 'One'
order by ID desc
这是我现在遇到的错误:
XQuery [MyTable.XmlDataColumn.value()]: Cannot atomize/apply data() on expression that contains type 'NameValuePair' within inferred type 'element(NameValuePair,#anonymous) *'
更新(响应@LeoWörteler 的建议)
根据您的回答,我将 SQL 更改为:
select *
from MyTable with(nolock)
where [XmlDataColumn].value('/NameValuePairCollection/NameValuePair[@Name="Subject"]/@Value', 'varchar(max)') = 'One'
order by ID desc
这仍然行不通。我收到以下错误:
XQuery [MyTable.XmlDataColumn.value()]: 'value()' requires a singleton (or empty sequence), found operand of type 'xs:string *'