Here is my XML Format:
<ROOT>
<Orders>
<OrderID>423</OrderID>
<ProductID>54</ProductID>
<ProductID>23</ProductID>
</Orders>
<Orders>
<OrderID>523</OrderID>
<ProductID>5</ProductID>
<ProductID>26</ProductID>
</Orders>
I want to have my output in the below format
OrderID ProductID
423 54
423 23
523 5
523 26
I found ways that help me read attribute from XML and convert it to SQL table. But didn't find ways or solution for my XML input. Any help is appreciated. Thanks.