I have two tables, a table of teachers and a table of students. The tables are linked by TeachID.
tblTeachers tblStudents
---------------------- -------------------
TeacherLast (text) StudentFirst
TeachID (PK) (autonum) StudentLast
TeachID (num)
In tblTeachers, I need to convert the TeachID field to a text field. Consequently, the TeachID field in tblStudents will need to be converted to text. Once done, I need to update the TeachID field for records in tblTeachers with certain values, and (with Cascade Update allowed?) have the new values automatically cascade up for the matching records in tblStudents.
How can I do this without losing the relationships between the records?
Thanks. Kurt
tblTeachers tblStudents
---------------------- -------------------
TeacherLast (text) StudentFirst
TeachID (PK) (autonum) StudentLast
TeachID (num)
In tblTeachers, I need to convert the TeachID field to a text field. Consequently, the TeachID field in tblStudents will need to be converted to text. Once done, I need to update the TeachID field for records in tblTeachers with certain values, and (with Cascade Update allowed?) have the new values automatically cascade up for the matching records in tblStudents.
How can I do this without losing the relationships between the records?
Thanks. Kurt