I am using with rollup
in my sql query. I am not getting alias name for rollup.
My SQL is
SELECT [Column1],
sum([Column2])
FROM Tablea
GROUP BY [Column2] WITH ROLLUP
Which returns
s 8
t 8
j 8
null 24
How can I replace the NULL
in the total row?