如何在Postgres 11和Postgres 9.1.2中解析XML

问题描述 投票:0回答:1

在Postgres 9.1.2脚本中产生了正确的结果:

1.34
5.56

在Postgres 11中,它会产生错误的结果:

null
null

如何让它在Postgres上的新版本中运行?

create temp table t(x xml, nsa text[][]) on commit drop;
insert into t values(
    '<?xml version="1.0" encoding="UTF-8"?>
<Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:iso:std:iso:20022:tech:xsd:camt.053.001.02">
  <BkToCstmrStmt>
    <Stmt>
      <Ntry>
        <Amt Ccy="EUR">1.34</Amt>
      </Ntry>
      <Ntry>
        <Amt Ccy="EUR">5.56</Amt>
      </Ntry>
    </Stmt>
  </BkToCstmrStmt>
</Document> '::xml,
    ARRAY[ARRAY['ns','urn:iso:std:iso:20022:tech:xsd:camt.053.001.02']]);

    SELECT 
    (xpath('Amt/text()', x,nsa))[1]::text::numeric AS tasusumma
    FROM (
        SELECT unnest(xpath('/ns:Document/ns:BkToCstmrStmt/ns:Stmt/ns:Ntry', x,nsa)) as x,
        nsa
        FROM t
    ) Ntry
xml postgresql xml-parsing postgresql-11
1个回答
1
投票

使用命名空间别名限定Amt就足够了:

SELECT (xpath('ns:Amt/text()', x, nsa))[1]::text::numeric AS tasusumma
FROM (
    SELECT unnest(xpath('/ns:Document/ns:BkToCstmrStmt/ns:Stmt/ns:Ntry', x, nsa)) as x,
    nsa
    FROM t
) Ntry;

我在10.6测试了这个;我很确定它也适用于11。它也适用于以前的版本(在9.6上测试)。

© www.soinside.com 2019 - 2024. All rights reserved.