Re: [GENERAL] datatype questions

Поиск
Список
Период
Сортировка
От Aleksey Dashevsky
Тема Re: [GENERAL] datatype questions
Дата
Msg-id Pine.LNX.3.96.SK.980624120945.26065C-100000@kesha.luckynet.co.il
обсуждение исходный текст
Ответ на datatype questions  (Brian <signal@shreve.net>)
Ответы Re: [GENERAL] datatype questions  ("Antonio Garcia Mari" <agarcia@at4.net>)
Re: [GENERAL] datatype questions  (Brian <signal@shreve.net>)
Список pgsql-general

On Mon, 22 Jun 1998, Brian wrote:

> I am trying to convert a table into PostgresSQL from MySQL, and had a few
> questions:
>
> CREATE TABLE forum (
>   id int(11) DEFAULT '0' NOT NULL auto_increment,
>   name varchar(30),
>   email varchar(100),
>   topic varchar(50),
>   body blob,
>   host varchar(50),
>   thread int(11) DEFAULT '0' NOT NULL,
>   datestamp datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
>   KEY datestamp (datestamp),
>   PRIMARY KEY (id),
>   KEY thread (thread)
> );
>
> 1. Where in the documentation can you look to find what "modifiers" are
> supported by postgres after the declaration of the field.  such as NOT
> NULL, PRIMARY KEY, KEY, DEFAULT, UNIQUE, etc.  I call them modifiers but
> what are they really called?

Please, check PostgreSQL manual pages.
Also, there are HTMLized version  of mans on the Web:
http://www.postgresql.org/docs/man/
What do you exactly need:  create_table(l) , create_sequence(l) and
create_index(l) pages.

Aleksey.


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

Предыдущее
От: Mattias Kregert
Дата:
Сообщение: Re: [GENERAL] Q: How to convert int to date?
Следующее
От: "Antonio Garcia Mari"
Дата:
Сообщение: Re: [GENERAL] datatype questions