I have "teacher" that has many "student" records and I would like to let the teacher create a teacher-v-teacher table that allows a report that compares the students under them
So a table named teacher_v_teacher that has:
teacherID1
teacherID2
(etc)
I would like to let a teacher create a record and allow the other teacher to "approve" the connection.
The security section only allows ID1 or ID2 for "Advanced security setting"
I suppose one solution is to have "teacherMaster" and "teacherSlave" instead of ID1 and ID2 and duplicate the record...
As you can see my logic says "the table is equal" but ownership is two items not one.. I think a master/slave emans 2x the records but I guess that's ok.
Am I missing a more logical method that works well?
Thanks