Re: Serial data type not starting at 1

From: tony <tony(at)animaproductions(dot)com>
To: Tielman J de Villiers <tjdevil(at)bondnet(dot)co(dot)za>
Cc: "'pgsql-general(at)postgresql(dot)org'" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Serial data type not starting at 1
Date: 2001-11-15 14:53:46
Message-ID: 1005836026.23271.0.camel@tonux
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

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

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Stephan Szabo 2001-11-15 14:58:27 Re: UPDATE w/ subselect doing locking
Previous Message Martijn van Oosterhout 2001-11-15 14:45:21 Re: Idle in transaction ????