I am extracting data from the XML . In that i have two duplicate tag with different values . So how can i get this data in different columns ?
<table>
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>A1</td>
<td>B2</td>
</tr>
</table>
So , i want to get those values in different columns . How can i achieve this ? Any help would be appreciated.