Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

To work with a "grouped" and "non-grouped" datas in the one SELECT you can use a "PARTITION BY"-Tag: http://www.adp-gmbh.ch/ora/sql/analytical/index.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.