I am new to esql. I have an XML similar to the one given below
<vehicles>
<car make="Ford">
<model>Mustang</model>
<year>1965</year>
</car>
<car make="Chevrolet">
<model>Nova</model>
<year>1967</year>
</car>
</vehicles>
When i give the Xpath as "vehicles/car", I need a function to get two XML as given below as output.
<car make="Ford">
<model>Mustang</model>
<year>1965</year>
</car>
<car make="Chevrolet">
<model>Nova</model>
<year>1967</year>
</car>
Thanks in advance. Biju