600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > JavaWeb(servlet+jsp/springboot+html) 教务管理系统

JavaWeb(servlet+jsp/springboot+html) 教务管理系统

时间:2018-10-15 18:52:42

相关推荐

JavaWeb(servlet+jsp/springboot+html) 教务管理系统

说明

此系统同时支持mysql,sqlserver,有servlet和springboot两套代码

数据库文件说明

教务管理系统

数据库设计

关系模型

管理员(主键,用户名,密码)

学院(主键,学院名,院长,学院介绍)

教师(主键,用户名,密码,姓名,教师编号,性别,年龄,职称,毕业院校,所属学院)

班级(主键,班级名,所属学院,班主任)

课程(主键,课程名,学分)

教室(主键,教室编号,地点)

排课安排(主键,课程,教师,上课教室,上课班级,上课时间安排)

数据字典

管理员表

学院表

教师表

班级表

课程表

教室表

排课安排表

删改查sql语句示范

-------------------- 这是删改查语句,每次选中其中一句执行即可,新增数据语句在另一个sql里面-------------------- 管理员 删除语句delete from tb_admin where id = ''; -- 根据id删除-- 管理员 更新语句update tb_admin set id='' where id=''; -- 根据id更新-- 管理员 查询语句select * from tb_admin where 1=1 ; -- 根据查询条件查询-- 学院 删除语句delete from tb_college where id = ''; -- 根据id删除-- 学院 更新语句update tb_college set id='' where id=''; -- 根据id更新-- 学院 查询语句select * from tb_college where 1=1 ; -- 根据查询条件查询-- 教师 删除语句delete from tb_teacher where id = ''; -- 根据id删除-- 教师 更新语句update tb_teacher set id='' where id=''; -- 根据id更新-- 教师 查询语句select * from tb_teacher where 1=1 ; -- 根据查询条件查询-- 班级 删除语句delete from tb_clazz where id = ''; -- 根据id删除-- 班级 更新语句update tb_clazz set id='' where id=''; -- 根据id更新-- 班级 查询语句select * from tb_clazz where 1=1 ; -- 根据查询条件查询-- 课程 删除语句delete from tb_course where id = ''; -- 根据id删除-- 课程 更新语句update tb_course set id='' where id=''; -- 根据id更新-- 课程 查询语句select * from tb_course where 1=1 ; -- 根据查询条件查询-- 教室 删除语句delete from tb_classroom where id = ''; -- 根据id删除-- 教室 更新语句update tb_classroom set id='' where id=''; -- 根据id更新-- 教室 查询语句select * from tb_classroom where 1=1 ; -- 根据查询条件查询-- 排课安排 删除语句delete from tb_record where id = ''; -- 根据id删除-- 排课安排 更新语句update tb_record set id='' where id=''; -- 根据id更新-- 排课安排 查询语句select * from tb_record where 1=1 ; -- 根据查询条件查询

系统截图

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。