by codadilupo <yossarian99@[EMAIL PROTECTED]
>
Feb 28, 2008 at 02:13 PM
Bumsys@[EMAIL PROTECTED]
wrote:
> 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?
create sequence au_clients_seq start with 0 MINVALUE 0 increment by 1
nomaxvalue;
C.