Re: Question II - Mailing list pgsql-sql

From Christoph Haller
Subject Re: Question II
Date
Msg-id 3DF70BB8.A64AF0E5@rodos.fzk.de
Whole thread Raw
List pgsql-sql
>
> I would like to get all field name of a table within a stored
procedure
> using pgsql. How to do it??
>
SELECT a.attname
FROM pg_class c, pg_attribute a
WHERE c.relname = '<your-table-name>' AND a.attnum > 0 AND a.attrelid = c.oid
ORDER BY a.attnum ;
gives you the field names of <your-table-name>.

If you start a psql session with the -E option, you can see how
\d <your-table-name> is sql-generated.

If you are asking for support how to write this pgsql function
(table name parameter, query, etc.), then refer to the documentation
or send another request.

Regards, Christoph



pgsql-sql by date:

Previous
From: Christoph Haller
Date:
Subject: Re: sql query
Next
From: Richard Huxton
Date:
Subject: Re: Adding foreign key constraint post table creation