You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
createtableadmin_reservation
(
classroomId varchar(30) not null,
teacherId varchar(10) not null,
teacherName varchar(30) not null,
submitTime varchar(50) not null,
reserveTime varchar(50) not null,
state varchar(5) not null
);
2.classroom
createtableclassroom
(
id varchar(30) not null,
className varchar(30) not null,
classroomType varchar(30) not null,
maxPeople intnot null,
aircondition intnot null,
camera intnot null,
reserveTime varchar(30) not null,
state varchar(5) not null
);
3.teacher
createtableteacher
(
id varchar(10) not null,
name varchar(20) not null,
gender charnot null,
age intnot null,
telephone varchar(20) not null,
academy varchar(30) not null,
office varchar(30) not null,
position varchar(30) not null,
constraint teacher_telephone_uindex
unique (telephone)
);