Re: array indizes in SQL

From: Hans-Peter Oeri <hp(at)oeri(dot)ch>
To: Rodrigo De León <rdeleonp(at)gmail(dot)com>
Cc: ListaPostgre <pgsql-novice(at)postgresql(dot)org>
Subject: Re: array indizes in SQL
Date: 2007-11-12 17:04:54
Message-ID: 473887B6.1060908@oeri.ch
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Hi!

Rodrigo De León wrote:
> Can you give details on what you're doing that depends on such ordering?
> Just to have a better background of your requirements
Of course... One of my (slightly longer) queries should return all
tables having a fk to myself, including the field pairings:

SELECT
CAST(c.conrelid as regclass) AS "you"
, am.attname AS "mine"
, ay.attname AS "yours"
FROM
generate_series(1,5) as i
, pg_catalog.pg_attribute as am
, pg_catalog.pg_attribute as ay
, pg_catalog.pg_constraint as c
WHERE
c.confrelid = CAST(? AS regclass)
AND am.attrelid = c.confrelid
AND ay.attrelid = c.conrelid
AND c.confkey[i] = am.attnum -- position in the respective array
AND c.conkey[i] = ay.attnum -- must be identical
ORDER BY
i ASC

As far as I have seen, there is no "give me the position of value X in
array Y" function...

HPO

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message David Monarchi 2007-11-12 18:05:35 Constructing two-dimensional arrays from a query
Previous Message Rodrigo De León 2007-11-12 16:40:29 Re: array indizes in SQL