Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 postgis 的 postgres,并且我有一个包含几何数据的表。现在我想在 plpgsql 中编写一个循环遍历行并将每个几何值存储在数组中的过程。
我应该使用什么返回类型来返回一个充满几何值的数组?
为什么不使用geometry[]类型?
geometry[]
编辑
根据文档,您可以将任何现有的 PostgreSQL 类型用于数组:
可以创建任何内置或用户定义的基类型、枚举类型或复合类型的数组。