drop table Person ; create table Person ( id varchar(32) not null, fname varchar(80) not null, lname varchar(80) not null, address varchar(80) null, phone char(10) null, constraint pk_Person primary key(id) );