Re: Serial data type not starting at 1

Поиск
Список
Период
Сортировка
От Tielman J de Villiers
Тема Re: Serial data type not starting at 1
Дата
Msg-id E1F206EC93DCD4119A05009027A413590649A1@sbssvr.bondnet.co.za
обсуждение исходный текст
Ответ на Serial data type not starting at 1  (Tielman J de Villiers <tjdevil@bondnet.co.za>)
Список pgsql-general
Great and thank you very much:

[ create table test2 (x int default nextval('test_serial'),y varchar); ]

Did the trick

Tielman J de Villiers
BondNet Pty Ltd

-----Original Message-----
From: tony [mailto:tony@animaproductions.com]
Sent: Thursday, November 15, 2001 4:54 PM
To: Tielman J de Villiers
Cc: 'pgsql-general@postgresql.org'
Subject: RE: [GENERAL] Serial data type not starting at 1


On Thu, 2001-11-15 at 15:38, Tielman J de Villiers wrote:
> Thanks Tony,
>
> I have tried:
> db=> create table test2(x serial start 5000,y varchar);
> But it gives:
> ERROR:  parser: parse error at or near "start"

create sequence test_serial start 5000;
create table test2 (
x nextval('test_serial'),
y varchar;
);


Tony
--
RedHat Linux on Sony Vaio C1XD/S http://www.animaproductions.com/linux2.html
Macromedia UltraDev with PostgreSQL
http://www.animaproductions.com/ultra.html

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

Предыдущее
От: sysop
Дата:
Сообщение: GUI?
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Serial data type not starting at 1