How to sum the group by value ?
so basically i have a query that gives the sum of a thing based in a group by tag
like this :
sum
tag1 100
tag2 200
tag 3 100
i would like to get the total group by value and create a table with it to create a % of the total.
In this example would be = 400
like :
sum Total Average
tag1 100 400 25%
tag2 200 400 50%
tag 3 100 400 25%
Thanks in advance