Announcing a new experience for the Oracle Analytics community coming April 4th!
This category will be read-only as we migrate this space from 3/30-4/4, after which you’ll be able to post as usual. See you there!
trying to group by a column in OTBI
Summary
Trying to emulate the SQL Group by below in OTBIContent
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