在eclipse中,我试图 -
Select<some columns with sums and such>
From mytable
<Maybe some joins in there somewhere>
where <conditions>
Group By <Column with 9 rows>
order by <same column as Group By>
现在我试图找到那里所有列的总数。但是,要做到这一点,我将进入eclipse中的实际表。在最后一行添加聚合,将其命名为总计。
结果:
Location1 14,000
Totals 171,000
Location2 17,000
Totals 171,000
Location3 18,000
Totals 171,000
等
有没有办法让聚合只出现在底行,而只出现在一行?
答案 0 :(得分:2)
您最有可能将聚合作为单独的查询进行。您可以将它们作为单独的查询运行,然后将结果联合起来并显示它。
答案 1 :(得分:1)
我已经意识到我做错了什么。我将聚合放在一个详细信息行中,该行仅用于查询中的数据。在此行中放置总计将获得我之前获得的结果。
您需要做的是将聚合放在页脚行中。这样可以解决它。