When I run the example under "Namespace Prefixes", I get two different results. The first SELECT statement outputs the following:<ns1:root xmlns:ns1="abc" xmlns:ns2="abc"> <ns2:SomeElement /></ns1:root>The second SELECT statement outputs the following:<ns1:root xmlns:ns1="abc" xmlns:ns2="abc"> <ns1:SomeElement /></ns1:root>Why is that the case?
↧