Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个表,其 ID 为 1、4、8、12。我想将其设为 1、2、3、4。但我有另一个表引用这些 ID 号。我该怎么做?谢谢
如果引用表是 InnoDB,则更改外键约束并为其赋予ON UPDATE CASCADE属性。然后被引用字段中的所有更改将级联到引用表。
ON UPDATE CASCADE
这是一个小例子。