1
DECLARE @xml AS XML

SET @xml = CAST('<codes><pcc>DFC</pcc><pcc>MAI</pcc><pcc>PFS</pcc></codes>' AS XML)

SELECT  pcc.value('pcc[1]', 'varchar(max)') AS [ColumnTest]
FROM    @xml.nodes('/codes') results ( pcc )

我有这个非常简单的 xml,并试图将<pcc>节点中的所有数据提取到结果集中。我读到我将以某种方式使用 CROSS APPLY,但到目前为止我的努力都失败了。

提前致谢。

4

1 回答 1

1
    DECLARE @xml AS XML
    SET @xml = CAST('<codes><pcc>DFC</pcc><pcc>MAI</pcc><pcc>PFS</pcc></codes>' AS XML)
    SELECT  pcc.value('.', 'varchar(max)') AS [ColumnTest]
    FROM    @xml.nodes('/codes/pcc') results ( pcc )
于 2013-03-13T06:12:19.310 回答