On Tue, Sep 28, 2010 at 3:24 PM, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> wrote:
> I looked on some constructs that helps with iteration over array in
> plpgsql. I propose a following syntax:
>
> FOR var IN [array variable | array expression]
What is the benefits compared with
FOR ... IN SELECT unnest(array) or generate_subscripts(array) ?
--
Itagaki Takahiro