我正计划应用时间表生成。我想要标准名称,后续名单,标准明智科目等数据,并且还要将相应的教师与主题和标准联系起来。
我曾经想过,
StandardMaster(stdid,stdname)
TeacherMaster(teacherid,teachername)
SubjectMaster(subid,subname,stdid)
我希望桌子与教师科目和标准表格有关。我还需要什么?这三个表中需要进行任何修正吗?
答案 0 :(得分:1)
HM。看起来你还需要老师和主题之间的关系 另外 - 主人可以安全地留在名字中。
**standard**
standard_id
name
**teacher**
teacher_id
name
**subject**
subject_id
name
**subject_standard**
subject_id
standard_id
begin_date
end_date
**subject_teacher**
subject_id
teacher_id
begin_date
end_date