Re: select result into string's array

From: Dmitriy Igrishin <dmitigr(at)gmail(dot)com>
To: Alberto Asuero Arroyo <albertoasuero(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: select result into string's array
Date: 2009-10-09 08:31:24
Message-ID: b4399d110910090131h425602ack6fe6ae8661a975a3@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello.

You should use an array constructor:

DECLARE
m_array text[];
[..]
BEGIN
FOR m_array IN SELECT ARRAY[col_1, col_2, col_N] FROM my_table LOOP
[..]
END LOOP;

Regards,
Igrishin Dmitriy.

2009/10/9 Alberto Asuero Arroyo <albertoasuero(at)gmail(dot)com>

> Hi,
>
> I need to store the result of select into an array of string:
>
> /create or replace function search_engine.test/
> /(/
> /)/
> / returns integer as $$/
> /declare/
> / m_array text[];/
> /begin/
> / for m_array in select * from my_table loop/
> / raise notice 'valor 1: %',m_array;/
> / end loop;/
> / return 1;/
> /end; $$ LANGUAGE plpgsql;/
>
>
> This launch this errors:
>
> /ERROR: array value must start with "{" or dimension information
> SQL state: 22P02
> Context: PL/pgSQL function "test" line 4 at FOR over SELECT rows/
>
>
> Is it possible do this?? May I choose another way?
>
> Thanks in advance
>
> Alberto,
>
>
>
> --
> Sent via pgsql-sql mailing list (pgsql-sql(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-sql
>

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Alberto Asuero Arroyo 2009-10-09 09:08:52 Re: select result into string's array
Previous Message A. Kretschmer 2009-10-09 07:45:44 Re: select result into string's array