I am planning for an application of time-table generation. I wanted the data such as standardname, teachername, standard wise subjects and also relate the corresponding teacher with the subject and standard.
I had think like,
StandardMaster(stdid,stdname)
TeacherMaster(teacherid,teachername)
SubjectMaster(subid,subname,stdid)
I want the table with relation of teacher subject and standard tables.What more I need? Any corrections needed in these three tables?