Re: checking data type

Поиск
Список
Период
Сортировка
От Chris
Тема Re: checking data type
Дата
Msg-id 442C9AF5.9090803@gmail.com
обсуждение исходный текст
Ответ на Re: checking data type  ("raj" <royuco77@yahoo.com>)
Список pgsql-general
raj wrote:
> Hi, Chris (great looking site, by the way)! thanks for responding. i
> was just practicing on postgres and encountered this problem. i am
> using pg admin for postgres and for some reason the commands you posted
> does not seem to work.  i was kinda looking for an built-in function
> like "upper() or max()".

http://www.postgresql.org/docs/8.1/interactive/information-schema.html

specifically

http://www.postgresql.org/docs/8.1/interactive/infoschema-columns.html

So you end up with:

SELECT * from information_schema.columns where
table_name='your_table_name' and column_name='your_column_name';

There is a lot of data there, but you should be able to find what you need.

--
Postgresql & php tutorials
http://www.designmagick.com/

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

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: Performance Killer 'IN' ?
Следующее
От: Chris
Дата:
Сообщение: Re: PSQL Data Type: text vs. varchar(n)