通过选择 MAX 值列出表中的记录
我有一个表如下:
Account(Acc_number,Acc_balance,branch_code)
现在我想列出每个分支中余额最高的所有帐户详细信息,我应该如何编写sql语句?
简单地说,我只想列出所有分支机构,其中帐户余额最高。
i have a table as following:
Account(Acc_number,Acc_balance,branch_code)
Now i want to list all account details in each branch with the highest balance, how should I write the sql statement?
Simply said, i just want to list out all the branches, with the account of having highest balance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有类似的问题。
您可以使用分析函数。
如果它适合您,请尝试以下操作:
There are similar questions.
You can use analytic functions.
Try this if it works for you: