Re: Question II

Поиск
Список
Период
Сортировка
От Christoph Haller
Тема Re: Question II
Дата
Msg-id 3DF70BB8.A64AF0E5@rodos.fzk.de
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: Christoph Haller
Дата:
Сообщение: Re: sql query
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: Adding foreign key constraint post table creation