我想知道如何将 XML 分层数据转换为表格格式并与 SQL Server 2005 T-SQL (XPath/XQuery) 中的其他关系数据库表连接。
例如,
<Employees>
<Employee ID="001" Name="David" />
<Employee ID="002" Name="Mike" />
<Employee ID="003" Name="Alex" />
<Employee ID="004" Name="Morris" />
</Employees>
到 ..
ID Name
--------+--------
001 David
002 Mike
003 Alex
004 Morris
谢谢你的建议。:)