MySQL 中的行版本控制
我想在表中包含一个整数版本字段,在每次更新行时自动递增。在 MySQL 中可以做到这一点吗?
请注意,我不是在谈论TIMESTAMP
,它不可靠,因为同一秒内可能会发生两个并发更新。
I would like to include an integer version field in my table, auto-incrementing on each update made to a row. Is it possible to do this in MySQL?
Please note that I'm not talking about a TIMESTAMP
, which is not reliable as two concurrent updates might happen during the same second.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。更普遍的问题称为尺寸缓慢变化。
Yes it is. The more general problem is called slowly changing dimensions.
(我能想到的)执行此操作的唯一方法是自动递增列值的(更新前)触发器。
The only way (I can think of) to do this is a (before-update) trigger that automatically increments the column value.