Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

STRAGG with multiple partition

706654Dec 9 2009 — edited Dec 9 2009
I want to use STRAGG LIKe this....

select col1,
col2, col3, stragg(distinct val) over (partition by col1, col2, col3 ORDER BY VAL
RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
from t

Instead of this ,we can use group by at the end. i want it in the above format to create object in BusinessObjects.

Please anyone help me.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 6 2010
Added on Dec 9 2009
5 comments
866 views