本文介绍了如何设计考勤数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在做大学生考勤系统的项目。每个教师最多可以有4个科目,大约有36个科目。老师每天登录到那里,每天都要加入他/她的科目。我可以设计数据库为此,我应该创建哪些表?
i am doing project on college student attendance system.each teacher can have maximum 4 subjects and there are around 36 subjects.each teacher log in to there account and add attendance of his/her subject every day.how can i design database for this,what tables should i create?
推荐答案
Id Subject
-- -------
1 English
2 Maths
教师主表:
Teacher master table:
Id Teacher_Name
-- ----------
1 Sruthy
2 Sreelakshmi
学生主表:
Students master table:
Id Students_Name
-- ------
1 Vimal
2 Tadit
这篇关于如何设计考勤数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!