gpt4 book ai didi

sql - 读取 postgres 中的 XML 属性

转载 作者:行者123 更新时间:2023-11-29 12:50:23 25 4
gpt4 key购买 nike

我在 Postgres 中使用 XML first timer 时遇到了问题。我在名为 XMLCONTENT 的变量中有以下 xml

<?xml version="1.0" encoding="UTF-8"?>
<Actions>
<Action ActionID="90e0dbef-c23a-4fcd-bfa8-75d8bfa2c9e2" />
<Action ActionID="6a1998e1-70f1-4611-992a-7a27e2834c35" />
<Action ActionID="43dd9a91-c6d3-4980-b211-9b3780f04305" />
<Action ActionID="cdf01821-ac28-45a9-abf8-a7d7c9426518" />
<Action ActionID="e86fac8a-84e3-41ba-8bee-c7ffd1ac8ee5" />
<Action ActionID="a68dd878-ba1e-4fd9-b436-cdc15eccffb6" />
<Action ActionID="cd863a5a-83e9-489e-b24d-ff6638c5b190" />
<Action ActionID="720ba9c7-b797-4b2e-913e-11ac3ecd7b7f" />
<Action ActionID="b6b35d0d-938e-45d3-96d1-0c8ca3ad59f3" MessageID="42f40c3a-4426-4506-86c5-222fb03c2114" />
</Actions>

我想从这个 XML 中提取详细信息,我正在使用以下查询

Select  
Unnest(xpath('//@ActionID',XMLCONTENT)) as ID,
Unnest(xpath('//@MessageID',XMLCONTENT)) as MessageID,
Unnest(xpath('//@Operator',XMLCONTENT)) as Operator

但是我得到了如下所示的错误输出

enter image description here

MessageID 链接到错误的 actionID。遍历此 XML 的正确方法是什么?

最佳答案

您的查询不起作用的原因是使用了 unnest()在选择列表中:每个 unnest()调用向结果中添加一个新行。

您需要在 from 中使用 unnest为每个 <Action> 创建一行的子句元素:

with data (xmlcontent) as (
values ('
<Actions>
<Action ActionID="90e0dbef-c23a-4fcd-bfa8-75d8bfa2c9e2" />
<Action ActionID="6a1998e1-70f1-4611-992a-7a27e2834c35" />
<Action ActionID="43dd9a91-c6d3-4980-b211-9b3780f04305" />
<Action ActionID="cdf01821-ac28-45a9-abf8-a7d7c9426518" />
<Action ActionID="e86fac8a-84e3-41ba-8bee-c7ffd1ac8ee5" />
<Action ActionID="a68dd878-ba1e-4fd9-b436-cdc15eccffb6" />
<Action ActionID="cd863a5a-83e9-489e-b24d-ff6638c5b190" />
<Action ActionID="720ba9c7-b797-4b2e-913e-11ac3ecd7b7f" />
<Action ActionID="b6b35d0d-938e-45d3-96d1-0c8ca3ad59f3"
MessageID="42f40c3a-4426-4506-86c5-222fb03c2114" />
</Actions>'::xml)
)
select (xpath('//@ActionID', xt.action))[1] as id,
(xpath('//@MessageID', xt.action))[1] as message_id
from data
cross join unnest(xpath('/Actions/Action', xmlcontent)) as xt(action);

返回:

id                                   | message_id                          
-------------------------------------+-------------------------------------
90e0dbef-c23a-4fcd-bfa8-75d8bfa2c9e2 |
6a1998e1-70f1-4611-992a-7a27e2834c35 |
43dd9a91-c6d3-4980-b211-9b3780f04305 |
cdf01821-ac28-45a9-abf8-a7d7c9426518 |
e86fac8a-84e3-41ba-8bee-c7ffd1ac8ee5 |
a68dd878-ba1e-4fd9-b436-cdc15eccffb6 |
cd863a5a-83e9-489e-b24d-ff6638c5b190 |
720ba9c7-b797-4b2e-913e-11ac3ecd7b7f |
b6b35d0d-938e-45d3-96d1-0c8ca3ad59f3 | 42f40c3a-4426-4506-86c5-222fb03c2114

在选择列表中,您知道每个 '//@ActionID'仅返回单个元素,因此不再需要在该级别使用 unnest。

在线示例:https://rextester.com/MWBCEN37238


如果您使用的是 Postgres 10 或更高版本,使用 XMLTABLE 会更简单一些:

select xt.*
from data
cross join xmltable ('/Actions/Action'
passing xmlcontent
columns id uuid path '@ActionID',
message_id uuid path '@MessageID'
) as xt;

在线示例:https://dbfiddle.uk/?rdbms=postgres_10&fiddle=1e70be54c25a42db5ebff9a996423920


关于sql - 读取 postgres 中的 XML 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55378577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com