select groupid,count(value) as x
from test_distinct_count
group by rollup (groupid);
This query gives output like :
What i need is to display the value 5 for all the groupids in a column say Total. Something like this :
how can this be achieved using Hana Sql.

