This is my sum clause
Select *,(sum(current_bal-curr_bal_now)/
current_bal from base
Group by month
This gives me an error because I'm not using current_bal in the group by. Is there a way of not using group by current_bal aswell as month as it completely messes up the output layout.
Thanks