Re: AW: Table Attribute Help - Mailing list pgsql-sql

From Brian C. Doyle
Subject Re: AW: Table Attribute Help
Date
Msg-id 5.0.0.25.2.20001009113629.0524b2c0@pop.mindspring.com
Whole thread Raw
Responses Re: AW: Table Attribute Help
List pgsql-sql
That is great thank you.

How would I grab the attribute type for an attribute with it so that the 
out put would look like
  attname       atttype
--------------   ---------- userid varchar(30)

I know that is not correct but is it possible to get that out put


At 05:27 PM 10/9/00 +0200, you wrote:
>yes it's possible,
>
>SELECT pg_attribute.attname
>FROM pg_class, pg_attribute
>WHERE
>pg_class.relname = 'xxx' and pg_attribute.attrelid = pg_class.oid
>
>and pg_attribute.attnum>=1 order by pg_attribute.attnum;
>
>xxx is your tablename!
>
>
>-----Ursprüngliche Nachricht-----
>Von: Brian C. Doyle [mailto:bcdoyle@mindspring.com]
>Gesendet: Montag, 9. Oktober 2000 17:21
>An: pgsql-sql@postgresql.org
>Betreff: [SQL] Table Attribute Help
>
>
>Hello all,
>
>I am trying to find a query to retrive the attributes of a table as in \d
>tablename but as a select command.  Is this possible?



pgsql-sql by date:

Previous
From: Jeff Hoffmann
Date:
Subject: Re: Table Attribute Help
Next
From: "omid omoomi"
Date:
Subject: Re: Table Attribute Help