I have these tables and fields:
Status Table
Status ID (auto number, primary key)
Status Name (text)
Student Table
Student ID (auto number, primary key)
...
Student Statuses Table
Student ID (value from Student Table)
Status ID (value from Status Table)
Student Status (Yes/No)
Ok, here's my problem. I have the values from the Status table cascade to the Student Statuses table, but when I change the name of one of the statuses, any record that has a 'yes' in the Student Status field is changed to 'no'. Is it supposed to do this or should the Status Name update without affecting the Student Status?
If it should reset all records, is there a way to go around this besides manually going through each record and updating it?
Status Table
Status ID (auto number, primary key)
Status Name (text)
Student Table
Student ID (auto number, primary key)
...
Student Statuses Table
Student ID (value from Student Table)
Status ID (value from Status Table)
Student Status (Yes/No)
Ok, here's my problem. I have the values from the Status table cascade to the Student Statuses table, but when I change the name of one of the statuses, any record that has a 'yes' in the Student Status field is changed to 'no'. Is it supposed to do this or should the Status Name update without affecting the Student Status?
If it should reset all records, is there a way to go around this besides manually going through each record and updating it?