Categories
- All Categories
- Oracle Analytics Learning Hub
- 31 Oracle Analytics Sharing Center
- 20 Oracle Analytics Lounge
- 250 Oracle Analytics News
- 45 Oracle Analytics Videos
- 16.1K Oracle Analytics Forums
- 6.3K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 93 Oracle Analytics Trainings
- 16 Oracle Analytics and AI 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