MySQL 查询根据两个值选择非唯一 ID 的最佳条目
我想知道如何查询MySQL,以便具有相同ID的条目,检查并查看具有相同ID的条目中哪些具有最高值,然后返回该值。最后,我需要它返回具有该值的所有唯一 ID,如果存在非唯一 ID,则让它选择具有最高值的 ID。
下图中的示例表和返回值...
非常感谢 Swift 帮助!
这是我到目前为止所拥有的,我不知道什么条件可以将
'SELECT CONCAT(table.ID, "\t", table.value) INTO OUTFILE ...'
I would like to know how I can query MySQL so that entries that have the same ID, to check and see which of the entries with the same ID has the highest value, and then return that value. In the end, I need it to return all unique IDs with the value, and if there are nonunique IDs, to make it pick the one with the highest value.
Example table and return values in the image below...
Swift help would be greatly appreciated!
Here is what I have so far, I dont know what conditions to put
'SELECT CONCAT(table.ID, "\t", table.value) INTO OUTFILE ...'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用连接:
Using concat: