Re: [HACKERS] AUTO_INCREMENT suggestion

Поиск
Список
Период
Сортировка
От Goran Thyni
Тема Re: [HACKERS] AUTO_INCREMENT suggestion
Дата
Msg-id 34FFCF69.44236E21@bildbasen.se
обсуждение исходный текст
Ответ на AUTO_INCREMENT suggestion  ("D. Dante Lorenso" <dlorenso@afai.com>)
Ответы Re: [HACKERS] AUTO_INCREMENT suggestion  (The Hermit Hacker <scrappy@hub.org>)
Re: [HACKERS] AUTO_INCREMENT suggestion  (ocie@paracel.com)
Список pgsql-hackers
D. Dante Lorenso wrote:
>
> To aid those of us that don't want to use sequences, can we add a
> feature to 6.4 that allows the use of an AUTO_INCREMENT statement
> when defining tables?  MySQL does this, and I like it.  It resembles
> the Autonumber feature in Access as well.
>
> create table tblFirm (
>     FirmID int PRIMARY KEY AUTO_INCREMENT,
>     FirmTypeID int,
>     FirmName varchar(64) NOT NULL,
>     FirmAlpha char(20) NOT NULL UNIQUE,
>     FirmURL varchar(64),
>     FirmEmail varchar(64)
> );
>
> Just yet another suggestion.
>

Informix calls something like this SERIAL type, like:

create table tblFirm (
     FirmID SERIAL PRIMARY KEY,
     FirmTypeID int,
     FirmName varchar(64) NOT NULL,
     FirmAlpha char(20) NOT NULL UNIQUE,
     FirmURL varchar(64),
     FirmEmail varchar(64)
);

Don't know if that is standrd or extension.

We use "CREATE SEQUENCE" to do this is PgSQL.

    regards,
--
---------------------------------------------
Göran Thyni, sysadm, JMS Bildbasen, Kiruna

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

Предыдущее
От: Peter T Mount
Дата:
Сообщение: Re: [QUESTIONS] Re: [HACKERS] text should be a blob field
Следующее
От: Mattias Kregert
Дата:
Сообщение: Re: [HACKERS] domain feature - details