Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
trying to group by a column in OTBI

Neil Kaufman
Rank 2 - Community Beginner
Summary
Trying to emulate the SQL Group by below in OTBI
Content
Select pt.task_number,
sum(peia.projfunc_raw_cost )
FROM pjc_exp_items_all peia,
pjf_projects_all_b ppb,
pjf_tasks_v pt
Where
ppb.project_id=pt.project_id
and
pt.task_id= peia.task_id
and task_number='001'
group by task_number
Code Snippet
Select pt.task_number, sum(peia.projfunc_raw_cost ) FROM pjc_exp_items_all peia, pjf_projects_all_b ppb, pjf_tasks_v pt Where ppb.project_id=pt.project_id and pt.task_id= peia.task_id and task_number='001' group by task_number
0