In addition to this question: Comparing in SQL and SUM
I need some more help. At this point I have a View (lets call it inner-join-view) that joines two tables with an INNER JOIN. This is fine. Then I have another view which uses SUM+GROUP BY to sum up some data from the inner-join-view, which is fine. Now, however, I need data from the inner-join-view that doesn't have anything to do with the group by. Does that make sense? I can't just select it and then group it, because that creates a wrong calculation.
How can I come around this?