Re: newbie question... how do I get table structure?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: newbie question... how do I get table structure?
Дата
Msg-id 555.1076084123@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: newbie question... how do I get table structure?  (Franco Bruno Borghesi <franco@akyasociados.com.ar>)
Ответы Re: newbie question... how do I get table structure?  (Franco Bruno Borghesi <franco@akyasociados.com.ar>)
Список pgsql-general
Franco Bruno Borghesi <franco@akyasociados.com.ar> writes:
> Does anyone know if the ansi sql standard defines any way to do this?
> I've seen the DESCRIBE TABLE/INDEX/... or SHOW TABLE/INDEX/... commands
> in other databases, but I don't really know if they are extensions or
> not.

They are extensions (and very nonstandard ones at that).  What the SQL
standard provides are standardized views of the system catalogs located
in the INFORMATION_SCHEMA schema.  The per-spec way to do this would
be something like

select column_name, data_type
from information_schema.columns
where table_name = 'foo'
order by ordinal_position;

Now Postgres only got around to supporting the INFORMATION_SCHEMA views
in 7.4 (although in principle you could have defined most of these views
earlier, certainly in 7.3).  I'm not real sure how many other DBs
support INFORMATION_SCHEMA either ... it may not be all that "standard".

            regards, tom lane

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

Предыдущее
От: Anton Nikiforov
Дата:
Сообщение: PL/Ruby
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: how can I select into an array?