Create XML based on 2 XMLs and looking up values in both files using XSLT2.0
问题 I am trying to generate a XML based on 2 other XMLs. I am polling a DB that returns details of people(There can be n number of people returned in query). The final XML should have the exact number of Data tags as the distinct name tags in the XML coming from DB . For Ex: 1st XML- Getting this from DB <parent> <child> <name>John</name> <city>Boston</city> </child> <child> <name>John</name> <city>Seattle</city> </child> <child> <name>Allison</name> <city>Houston</city> </child> </parent> 2nd