我有一个平面表,我正试图将其转换为 xml 输出。
我需要地址部分出现在单独的节点中。
Select ID,AddressLine1,PostCode,Price,Name from Property
我需要这个看起来像
<Property>
<ID> 1 <ID>
<Address>
<Line1>10 Downing Street</Line1>
<PostCode>SW11SW</Postcode>
</Address>
<Price> 1,000,000,000 <Price>
<Name> My Next House<Name>
</Property>
任何想法如何实现地址部分?
谢谢Sp