create table student( id int not null, name varchar(20) not null, sex char(1) not null) class student{ int id; String name; } String sql="select * from user"; create table teachers( id bigint identity(1,1) not null primary key, teachid int not null unique e_mail varchar(30) not null unique )