create table au_clients ( id numeric(10,0) identity, name varchar(255) not null, constraint au_clients_pk primary key (id)) with identity_gap = 10 go how to do that primary key begins from 0?