MySQL 中的行版本控制

发布于 2024-11-14 09:15:18 字数 118 浏览 6 评论 0原文

我想在表中包含一个整数版本字段,在每次更新行时自动递增。在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖阳 2024-11-21 09:15:18

是的。更普遍的问题称为尺寸缓慢变化

Yes it is. The more general problem is called slowly changing dimensions.

冰魂雪魄 2024-11-21 09:15:18

(我能想到的)执行此操作的唯一方法是自动递增列值的(更新前)触发器。

The only way (I can think of) to do this is a (before-update) trigger that automatically increments the column value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文