have a postgres query to extract xml , not able to provide the xpath correctly
select column1, xmlcolumn from tabla
xmlcolumn is of the type:
<tag1>
<tag2>
<tag3>test</tag3>
</tag2>
</tag1>
I need to extract value of tag3
Any idea how this can be done ?