I have an XML Structure, which looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<Customers>
<Customer UD="XYZ">
<Info>
...
</Info>
<Travel>
<Trip Country="US" Year="2013" LengthOfStay="P13D"/>
<Trip Country="IT" Year="2015" LengthOfStay="P9D"/>
<Trip Country="JP" Year="2015" LengthOfStay="P5D"/>
</Travel>
</Customer>
<Customer UD="ABC">
...
</Customer>
</Customers>
I would like to create a complex select condition to return the customers that travelled more than X amount of times Per Year in the Last X Years.
Would it be possible? Many thanks!