使用postgres查询提取xml,无法正确提供xpath
select column1, xmlcolumn from tabla
xmlcolumn
的类型为:<tag1>
<tag2>
<tag3>test</tag3>
</tag2>
</tag1>
我需要提取tag3的值
知道怎么做吗?
最佳答案
SELECT xpath('/tag1/tag2/tag3/text()', xmlcolumn)
Postgres XML documentation
关于postgresql - 在postgres中提取xpath,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52648782/