drop table Person ; create table Person ( id varchar(32) not null; firstName varchar(80) not null, lastName varchar(80) not null, address varchar(80) null, phoneNumber char(10) null, constraint pk_Person primary key(id) );