| From: | Joshua Drake <jd(at)commandprompt(dot)com> |
|---|---|
| To: | kevin kempter <kevin(at)kevinkempterllc(dot)com> |
| Cc: | pgsql-admin(at)postgresql(dot)org |
| Subject: | Re: Select all table column names for a specified tablename (per the system catalogs) |
| Date: | 2008-09-22 22:29:50 |
| Message-ID: | 20080922152950.294284b4@jd-laptop |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-admin |
On Mon, 22 Sep 2008 16:06:06 -0600
kevin kempter <kevin(at)kevinkempterllc(dot)com> wrote:
> Hi List;
>
> I want to pull the list of column names from the system catalogs for
> a specified table. I only want column names, I want to exclude any
> index names, or other non-column name rows. I got this far (see
> below) however this query produces additional rows with attname's
> like tableoid, cmax, xmax ctid, etc.
>
> select attname from pg_attribute where attrelid = (select oid from
> pg_class where relname = 'my_tablename');
SELECT column_name FROM information_schema.columns WHERE table_name =
'table';
Joshua D. Drake
>
> Any thoughts ?
>
> Thanks in advance...
>
>
>
--
The PostgreSQL Company since 1997: http://www.commandprompt.com/
PostgreSQL Community Conference: http://www.postgresqlconference.org/
United States PostgreSQL Association: http://www.postgresql.us/
Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2008-09-23 03:15:29 | Re: displaying enum |
| Previous Message | kevin kempter | 2008-09-22 22:06:06 | Select all table column names for a specified tablename (per the system catalogs) |