从 mysql 表中获取版本最高的 ID 的所有条目

发布于 2024-10-19 08:53:27 字数 187 浏览 2 评论 0原文

我正在为我的数据库条目开发一个修订控制系统。

我有两个值需要检查,RefID(资产本身的 ID)和版本(该条目的版本),RefID 对于所有版本都是相同的。我想要做的是获取所有具有唯一 RefID 的条目,同时作为最高版本 ID,基本上是所有条目的 HEAD。

如果有人知道如何在 MySQL 中编写这个查询,那将会非常有帮助!

I'm working on a revision control system for my database entries.

I have 2 values that need to be checked for this, RefID (which is an id for the asset itself) and version which is what version this entry is, the RefID is the same for all versions. What I want to do is get all of the entries that have unique RefIDs while being the highest version ID, basically the HEAD of all the entries.

If anyone knows how to write this query in MySQL it would be very helpful!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鸠书 2024-10-26 08:53:27

对于这种情况,请使用:

  SELECT t.refid,
         MAX(t.version) AS max_version
    FROM YOUR_TABLE t
GROUP BY t.refid

For this situation, use:

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