在postgresql中粉碎XML

时间:2010-09-06 09:34:53

标签: xml postgresql plpgsql

在SQL Server 2005的T-SQL语言中,我可以通过以下方式粉碎XML值:

SELECT
    t.c.value('./ID[1]', 'INT'),
    t.c.value('./Name[1]', 'VARCHAR(50)')
FROM @Xml.nodes('/Customer') AS t(c)

其中@Xml是xml值,类似于

'<Customer><ID>23</ID><Name>Google</Name></Customer>'

有人可以帮我在PostgreSQL中实现相同的结果(可能在PL / pgSQL中)吗?

2 个答案:

答案 0 :(得分:10)

xpath函数将返回一组节点,以便您可以提取多个合作伙伴。通常你会做类似的事情:

SELECT (xpath('/Customer/ID/text()', node))[1]::text::int AS id,
  (xpath('/Customer/Name/text()', node))[1]::text AS name,
  (xpath('/Customer/Partners/ID/text()', node))::_text AS partners
FROM unnest(xpath('/Customers/Customer',
'<Customers><Customer><ID>23</ID><Name>Google</Name>
 <Partners><ID>120</ID><ID>243</ID><ID>245</ID></Partners>
</Customer>
<Customer><ID>24</ID><Name>HP</Name><Partners><ID>44</ID></Partners></Customer>
<Customer><ID>25</ID><Name>IBM</Name></Customer></Customers>'::xml
)) node

使用unnest(xpath(...))将大块xml分成行大小的叮咬;和xpath()提取单个值。从XML数组中提取第一个值,转换为text然后转换为int(或datenumeric等)并不是很舒服。我的博客上有一些辅助功能,可以让您更轻松,请参阅XML Parsing in Postgres

答案 1 :(得分:5)

使用the xpath-function in PostgreSQL处理XML。

编辑:示例:

SELECT
    xpath('/Customer/ID[1]/text()', content),
    xpath('/Customer/Name[1]/text()', content),
    *
FROM
    (SELECT '<Customer><ID>23</ID><Name>Google</Name></Customer>'::xml AS content) AS sub;