有没有简单的方法将postgres表转换为2维?
我有一个数据表foobar,有两列foo和bar,其中包含以下数据 1,2 3,4 5,6
我想在
中转换它{
{1,2},
{3,4},
{5,6}
}
我尝试过像
这样的事情从foobar中选择ARRAY [foo,bar]
创建
{1,2}
{3,4}
{5,6}
几乎就是那里
我怀疑我将要编写pgpsql函数来执行此操作?有什么建议吗?
答案 0 :(得分:2)
以下是我为LedgerSMB所做的事情:
CREATE AGGREGATE compound_array (
BASETYPE = ANYARRAY,
STYPE = ANYARRAY,
SFUNC = ARRAY_CAT,
INITCOND = '{}'
);
然后你可以:
select compound_array(ARRAY[[foo,bar]]) from foobar;
请注意,您需要有两对方括号,否则它只是将它们添加到一维数组中。
答案 1 :(得分:1)
create or replace function my_array()
returns integer[] as $function$
declare
r record;
a integer[];
begin
for r in
select foo, bar
from (values
(1, 2), (3, 4), (5, 6)
) foobar (foo, bar)
loop
a := a || array[[r.foo, r.bar]];
end loop;
return a;
end;
$function$ language plpgsql;
select my_array();
my_array
---------------------
{{1,2},{3,4},{5,6}}
select (my_array())[2][2];
my_array
----------
4
答案 2 :(得分:0)
select array_agg(ARRAY[foo,bar]) from foobar