to add table with primary key

From: <Bumsys_at_gmail.com>
Date: Thu, 28 Feb 2008 05:01:46 -0800 (PST)
Message-ID: <c9c73291-0e5c-468a-82b3-6e2076801200_at_i7g2000prf.googlegroups.com>



create table au_clients (
        id          number(10)      not null,
        name        varchar2(255)   not null,
    	constraint au_clients_pk primary key (id));
[Quoted] [Quoted] create sequence au_clients_seq start with 1 increment by 1 nomaxvalue;

i want that primary fey start with 0. what can do in this case? Received on Thu Feb 28 2008 - 14:01:46 CET

Original text of this message