我有一个结构如下的表:
位置 ID | 帐号 |
---|---|
长指南-这里 | 12345 |
长指南-这里 | 54321 |
要传递到另一个存储过程,我需要 XML 看起来像这样:
<root>
<clientID>12345</clientID>
<clientID>54321</clientID>
</root>
到目前为止,我能做的最好的事情就是这样:
<root clientID="10705"/>
我正在使用这个 SQL 语句:
SELECT
1 as tag,
null as parent,
AccountNumber as 'root!1!clientID'
FROM
Location.LocationMDAccount
WHERE
locationid = 'long-guid-here'
FOR XML EXPLICIT
到目前为止,我已经查看了 MSDN 页面上的文档,但还没有得到想要的结果。
@公斤,
你的实际上给了我这个输出:
<root>
<Location.LocationMDAccount>
<clientId>10705</clientId>
</Location.LocationMDAccount>
</root>
我现在要坚持使用FOR XML EXPLICIT
Chris Leon 的建议。