postgresqlHow can I get a value from a PostgreSQL XML column?
You can get a value from a PostgreSQL XML column using the xpath() function.
Example code
SELECT xpath('/foo/bar/text()', xml_column)
FROM some_table;
Output example
┌───────────────────────┐
│ xpath │
├───────────────────────┤
│ {SomeValue} │
└───────────────────────┘
The code above uses the xpath() function to get the value of the bar node inside the foo node of the xml_column column.
Code explanation
xpath()- a PostgreSQL function used to get a value from an XML column/foo/bar/text()- an XPath expression used to specify the target nodexml_column- the XML column from which the value is retrieved
Helpful links
More of Postgresql
- How do I use PostgreSQL's XMLTABLE to parse XML data?
- How do I use PostgreSQL with Qt?
- How do I use PostgreSQL ZonedDateTime to store date and time information?
- How can I extract the year from a PostgreSQL timestamp?
- How can I use PostgreSQL XOR to compare two values?
- How can I use PostgreSQL substring functions?
- How can I view my PostgreSQL query history?
- How can I use PostgreSQL and ZFS snapshots together?
- How can I monitor PostgreSQL performance using Zabbix?
- How do I use PostgreSQL query parameters?
See more codes...