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?