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.
在我的数据库中创建新行时,我有一列“ identifier”,primary key auto-increment另一列“ originalIdentifier”需要identifier在插入过程中采用与自动递增的“”相同的值。我知道的唯一解决方案是使用lastInsertedId并更新最后插入的行。是否可以在插入期间更新两列?
identifier
primary key auto-increment
originalIdentifier
lastInsertedId
您可以使用触发器 ( ) 的帮助在插入操作后使用 的值AFTER INSERT更新originalIdentifier列。identifier
AFTER INSERT