create table au_clients (
id number(10) not null,
name varchar2(255) not null,
constraint au_clients_pk primary key (id));
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?