Re: Clarification question

From: "Tim Barnard" <tbarnard(at)povn(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Subject: Re: Clarification question
Date: 2002-01-20 18:57:36
Message-ID: 005f01c1a1e4$532f2aa0$a519af3f@hartcomm.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Thanks for the suggestion.

Tim Barnard
S.E. Mgr
Hartford Communications Corporation

----- Original Message -----
From: "Tommi Mäkitalo" <t(dot)maekitalo(at)epgmbh(dot)de>
To: "Tim Barnard" <tbarnard(at)povn(dot)com>
Sent: Sunday, January 20, 2002 10:53 AM
Subject: Re: [GENERAL] Clarification question

> Hi,
>
> You could use a join too. It will be simpler to optimize it:
>
> select attname
> from pg_attribute join pg_class on attrelid = oid
> where relname = '<insert table name here>'
> and attnum > 0
>
> Tommi
>
> ...
>
> >>>select attname from pg_attribute
> >>> where attrelid=
> >>> (select relfilenode from pg_class
> >>> where relname like <insert table name here>)
> >>> and attnum > 0
> >>>
> ...
>
> >>
> >>select attname from pg_attribute
> >> where attrelid=
> >> (select oid from pg_class
> >> where relname = '<insert table name here>')
> >> and attnum > 0
> >>
>
>
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tim Barnard 2002-01-20 19:05:02 Re: Clarification question
Previous Message Francisco Reyes 2002-01-20 15:56:03 Re: Long running queries and timeouts