codeWarrior456
Technical User
I have the following XML sample:
<?xml version="1.0" encoding="utf-8" ?>
<Sample>
<Parent>
<Child>
<Key value="0"/>
</Child>
<Child>
<Key value="1"/>
</Child>
</Parent>
<Parent>
<Child>
<Key value="0"/>
</Child>
<Child>
<Key value="1"/>
</Child>
</Parent>
</Sample>
I want to select all of the distinct value attributes. My final results should be:
0
1
How can I do this?
<?xml version="1.0" encoding="utf-8" ?>
<Sample>
<Parent>
<Child>
<Key value="0"/>
</Child>
<Child>
<Key value="1"/>
</Child>
</Parent>
<Parent>
<Child>
<Key value="0"/>
</Child>
<Child>
<Key value="1"/>
</Child>
</Parent>
</Sample>
I want to select all of the distinct value attributes. My final results should be:
0
1
How can I do this?