I have an SQL Query to make an XML Document. Everything works except one thing:
A short insert of my SQL Query at this time is:
select OITM.ItemCode, OITM.ItemName, OITM.Price
Output in XML:
<DocumentElement>
<article>
<ItemCode>12345</ItemCode>
<ItemName>test</ItemName>
<Price>20.00</Price>
</article>
</DocumentElement>
I want this Structure:
<DocumentElement>
<article>
<ItemCode>12345</ItemCode>
<ItemName>test</ItemName>
<Prices>
<Price>20.00</Price>
</Prices>
</article>
</DocumentElement>
How can i insert the <Prices> tag?