我需要更新表的主键。该主键存在于其他3个表中。
简单示例:
模型(ID_model,model)
ID_model
存在于其他表中:
table motor(id-model, id-serie, id_year, etc)
- 其中id_model
,id_serie
和id_year
是primary_key
table serie(id-serie, serie, id-model)
- 其中id_model
是(外键)
如何更新表格ID_model
中的model
并同时更新其他表格中的ID_model
?