Hello,I think that the use of the following example:WITH XMLNAMESPACES('a' AS c)SELECT 1 AS 'c:b'FOR XML PATHCan permit to see difference between "xmlns:a" and "a" in the original example.so result will be:<rowxmlns:c="a"><c:b>1</c:b></row>instead of:<row xmlns:a="a"><a:b>1</a:b></row>
↧