Hello
I have a fairly basic question. Say, I am doing a Percentage Calculation (Num/Den)*100.
Num = Count (A) Where Col_1 = 'abc' and col_2 < sysdate
Den = Count (A) Where Col_1 = 'abc'
In some cases, there could be multiple conditions for num and den.
I am trying to evaluate two cases - I do the calculation on the fly using Ad-hoc layer or I create two objects - Num and Den in BMM and use them in front-end. Is there going to be a difference in query execution time in both the cases?
Thanks!