如何获取带有总和的列
我编写了 SQL 查询,它从多个表中获取数据并以这种格式显示相同的数据。。
我想要每个人的总和并显示在新列中,如下所示。
你能指出一些做同样事情的例子吗?
I have written SQL query which brings data from multiple tables and displays the same in this format..
I want the Sum of Total for every person and display in a new column, like the below.
Can you point some examples doing same kind of stuff please..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的 RDBMS 支持窗口聚合,您可以添加
到您的
SELECT
列表中If your RDBMS supports windowed aggregates you can add
to your
SELECT
list查找“总和”和“分组依据”。但请注意,按名称分组将使开始日期和结束日期无效。
编辑:啊,mssql - nvm ;)
look for "sum" and "group by". But note, that grouping by name will invalidate the startDate and endDate.
edit: ah, mssql - nvm ;)