Greetings.
How do I run a join query between fields of 2
xml documents, meanwhile deciding how to organize the returned result
tree?
For example:
1st doc
--------------
<PERSON name = "Cagdas">
<TITLE>1</TITLE>
</PERSON>
2nd doc
-----------
<TITLE
id="1">Manager</TITLE>
And I would like the result of my query to be the
following:
<PERSON name = "Cagdas">
<TITLE id = "1">
Manager </TITLE>
</PERSON>
Thanks
|