我需要从 Postgres 中名为 attributes (Stores XML) 的 bytea 列中获取一个 int 值。以下是属性列可能包含的示例 XML:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<entry key="product.name">DISC.22%</entry>
</properties>
我需要获得 22 个 Int 值(DISC.22%)。有没有办法在 Postgres 中做到这一点?