I am currently working on a project where you save the details of a lecturer and student.
I am not sure if I should use one table User
or two tables Lecturer
and Student
.
When you log in as a lecturer you have special privileges as its a group management page for projects, on the group page when it loads that a student will not have. In User
tbl there will be a column
status
where on register, the page you can choose to be student or lecturer and enter a special
lecturer code. I am are using PHP with mySql.
In Summary, should I use 1 User
table for both Student and lecturer, or have 2 separate Student
and Lecturer
tables.
Additional Information: 1 course could have many lecturers and students, but 1 student would have 1 course where as lecturer has many courses.