How to implement below query through yellowfin report builder
Answered
How to implement using report builder the below scenario:
SELECT T1.C1, SUM(T1.AMOUNT)
FROM(SELECT C1,C2, SUM(AMOUNT) AS AMOUNT
FROM AGGREGATE_TABLE
JOIN T2 ON T2.C3=AGGREGATE_TABLE.C3
GROUP BY
C1,C2
HAVING SUM(AMOUNT)<>0)
T1
GROUP BY T1.C1;
Please note that Aggregate_table is a huge table and I dont want to refer it twice.Also, I already have view containing this part:" AGGREGATE_TABLE JOIN T2 ON T2.C3=AGGREGATE_TABLE.C3"
Please advise.I need to implement it urgently.
Hi Mukta,
Unfortunately something of this complexity may only be possible through a free-hand SQL report, or on a report created on top of a stored procedure view. Are either of these possibilities here?
Regards,
Nathan
Hi Mukta,
Unfortunately something of this complexity may only be possible through a free-hand SQL report, or on a report created on top of a stored procedure view. Are either of these possibilities here?
Regards,
Nathan
Hi Mukta,
I am going to set this ticket to closed for now, but if there is anything else I can do to help here, please just let me know and the case will be re-opened!
Regards,
Nathan
Hi Mukta,
I am going to set this ticket to closed for now, but if there is anything else I can do to help here, please just let me know and the case will be re-opened!
Regards,
Nathan
Replies have been locked on this page!