J'ai une table SQL Server 2005 comme celle-ci :
create table Taxonomy(
CategoryId integer primary key,
ParentCategoryId integer references Taxonomy(CategoryId),
CategoryDescription varchar(50)
)
avec des données ressemblant à CategoryIdParentCategoryIdCategoryDescription 123nullfoo345123bar
`
I'd like to query it into an xml document like this:
`
<taxonomy>
<category categoryid="123" categorydescription="foo">
<category id="455" categorydescription="bar"/>
</category>
</taxonomy>
Est-il possible de le faire avec FOR XML AUTO, ELEMENTS ? Ou dois-je utiliser FOR XML EXPLICIT ?