Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

environment: SQL server 2008 enterprise edition.

I am using Rollup clause and you how it shows aggregation at various levels WITH NULL values showing different levels of rollups e.g. ROllup(year,month,week) would show subtotals at each level.

I want it rolled up and yet want to see only highest elvel of aggregation. so I dont want to see any null values.

ANy idea how can i do that?

Regards Manjot

share|improve this question

1 Answer

up vote 6 down vote accepted

What do you mean by "only highest level of aggragation?

You can avoid the NULLs by checking if a column in grouped, like so:

SELECT        CASE WHEN Grouping(GroupID) = 1 THEN '#ALL' ELSE GroupID END AS         GroupID,          
              CASE WHEN Grouping(SubGroupID) = 1 THEN '#ALL' ELSE SubGroupID END AS SubGroupID, 
              Sum(Value)
FROM          Table
GROUP BY      GroupID,
              SubGroupID
WITH ROLLUP

It will display #ALL insteaed of NULL.

share|improve this answer
thank you very much – Manjot Oct 23 '09 at 22:04
@#$% YA! up vote on that one! nice solution! I was using ISNULL but then I was running into problems with when the actual value should have been null! THANKS! – kralco626 Jul 14 '10 at 11:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.