怎么将xml数据转转成表行~~~ 我用下面的方式进行处理,但是 tmpXmlTable 的列的类型是xml的,需要怎么处理让其能够和其他表进行关联跟新数据
create temp table tmpXml ON COMMIT DROP as(
select ItemXML::XML as data
);
create temp table tmpXmlTable ON COMMIT DROP as
SELECT unnest((xpath('//Record/@id', tmpXml.data))) as id,
unnest((xpath('//Record/@tax', tmpXml.data))) as tax
FROM tmpXml;
用 XMLTABLE 处理