我正在从 XML 文档中选择数据,但是我需要遍历每个子节点对它们执行一些操作。
目前我在 select 周围有一个 while 存在循环,但不知道如何参数化节点号。
我理解以下内容是不正确的,但如果有人能指出参数化节点选择的最佳方法,我将不胜感激。
谢谢。
DECLARE @nodeCount varchar(1) = '1'
WHILE EXISTS (SELECT table.value('(Info/Data/DataInfo/Type/node())[' + @nodeCount + ']', 'nvarchar(10)') from table)
XML如下:
<Info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Data>
<DataInfo>
<Description>11111111111</Description>
<Type>1</Type>
</DataInfo>
<DataInfo>
<Description>2222222222222</Description>
<Type>2</Type>
</DataInfo>
<DataInfo>
<Description>3333333333333</Description>
<Type>3</Type>
</DataInfo>
</Data>
</Info>