我有以下表格
Question_Table:{
quesId int primary key,
statusid int reference to Status_Table.statuId
}
Status_Table:{
statusId int primary key
}
Answers_Table:{
index int primary key,
quesId int reference to Question_Table.quesId,
answerDescription varchar
}
- 问题在这里有多个答案:Question_Table--Answer_Table 具有一对多关系。
- 每个问题都有其状态 ID: Question_Table--Status_Table 具有多对一关系
查询:在最终用户更新 answer_table 中的答案时,我想更新其状态:question_table 中的“完成”,但是当我触发 update(answer) 时,它只会触发答案表上的更新(在日志中验证),我对在这里的情况我没有实体之间的直接关系 - 状态和答案表。