Re: Array in nested query

From: Gerhard Heift <ml-postgresql-20081012-3518(at)gheift(dot)de>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Array in nested query
Date: 2009-02-15 10:41:58
Message-ID: 20090215104158.GA27488@gheift.kawo1.rwth-aachen.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sat, Feb 14, 2009 at 05:36:11PM -0500, Ken Winter wrote:
> I'm trying to look up the columns in a constraint in pg_catalog (of
> PostgreSQL 8.0.x). I can't figure out how to "join" the elements of the
> array that lists the `attnum's of the columns in the table to the `conkey'
> array in the constraint definition (see
> http://www.postgresql.org/docs/8.0/static/catalog-pg-constraint.html and
> http://www.postgresql.org/docs/8.0/static/catalog-pg-attribute.html ).
>
> The problem is in the last line of this query:
>
> SELECT a.attname AS name
>
> FROM pg_catalog.pg_class t, pg_catalog.pg_attribute a
>
> WHERE t.oid = 3626912
>
> AND a.attrelid = t.oid
>
> AND a.attnum = any (select conkey FROM pg_catalog.pg_constraint WHERE
> oid = 3708025)

SELECT a.attname AS name
FROM pg_catalog.pg_class t, pg_catalog.pg_attribute a
WHERE t.oid = 3626912
AND a.attrelid = t.oid
AND a.attnum IN (SELECT conkey FROM pg_catalog.pg_constraint WHERE oid = 3708025)

> I have tried all the variations on this syntax that I can think of, after
> plowing through all the documentation of arrays I can find in
> http://www.postgresql.org/docs/8.0/static/index.html, and none of them
> work.
>
> Any ideas?
>
> ~ TIA
>
> ~ Ken

Regards,
Gerhard

In response to

Browse pgsql-general by date

  From Date Subject
Next Message searchelite 2009-02-15 11:23:15 Re: select max from subquery
Previous Message Herouth Maoz 2009-02-15 09:48:42 Re: Slow update