Re: Return last value in of array (PostgreSQL 7.2.1)

From: Steve Crawford <scrawford(at)pinpointresearch(dot)com>
To: Erwin Brandstetter <Brsaz(at)gmzx(dot)at>, pgsql-admin(at)postgresql(dot)org
Subject: Re: Return last value in of array (PostgreSQL 7.2.1)
Date: 2003-09-24 00:46:13
Message-ID: 200309231746.13757.scrawford@pinpointresearch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

> I can't believe I have found a good solution here. I want to return
> the last value of an array with an SQL statement...
> That is what i came up with:
>
> select my_array_field[substr(array_dims(my_array_field), 4, 1)]
> from my_table;
>
> But this only works, as long as the upper boundary is from 1 to 9
> (one digit). Besides it looks ugly and will perform likewise.
>
> Did I miss something here?
> Is there any function returning more sensible data than array_dims
> (returning something like '[1:4]')?

IIRC I heard talk of new max and min array dimension functions in
upcoming releases. I'm tired so there may be better or more elegant
solutions but this one works (r is the array):

r[rtrim(substring(array_dims(r), position(':' in
array_dims(r))+1),']')::int]

Cheers,
Steve

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Bruce Momjian 2003-09-24 01:56:34 Re: File Sytems Types and Os Recomendations
Previous Message Peter Eisentraut 2003-09-24 00:02:32 Re: help needed!!!