我有以下结构的 2 个表:
People
Id | LastName | FirstName | Other columns...
第二个表有一个 XML 列:
Id | MyXmlCol | Other columns...
MyXmlCol
存储以下 XML:
<myData>
<block>
<person id="1" />
...other nodes
</block>
...other blocks
</myData>
id 属性实际上指向 People 表的 Id 列。
我需要的是查询MyXmlCol
,以便它返回:
<myData>
<block>
<person id="1" LastName="Jones" FirstName="Bob" />
...other nodes
</block>
...other blocks
</myData>
有可能做出这样的预测吗?我正在使用 Sql Server 2012。