Re: find column OID types with information schema?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: find column OID types with information schema?
Дата
Msg-id 5926.1240849781@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: find column OID types with information schema?  (Whit Armstrong <armstrong.whit@gmail.com>)
Ответы Re: find column OID types with information schema?  (Whit Armstrong <armstrong.whit@gmail.com>)
Список pgsql-general
Whit Armstrong <armstrong.whit@gmail.com> writes:
> However, there is no example that uses a schema + tablename.

If you're into masochism you can do that with a join of pg_class and
pg_namespace.  But what's usually easier for one-off queries is to
use the regclass converter:

select attname, atttypid from pg_attribute
where attrelid = 'myschema.mytable'::regclass;

Most likely you'll also want

... and attnum > 0 and not attisdropped

to keep down the clutter.

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Kynn Jones
Дата:
Сообщение: Re: Which header and lib files to use when compiling libpq-code?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Which header and lib files to use when compiling libpq-code?