从 mysql 表中获取版本最高的 ID 的所有条目
我正在为我的数据库条目开发一个修订控制系统。
我有两个值需要检查,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这种情况,请使用:
For this situation, use: