When grouping with a column in a GROUP BY statement that contains NULLs, they will be put into one group in your result set:
However, what I want is to prevent grouping rows by NULL value.
The following code gives me one row:
IF(OBJECT_ID('tempdb..#TestTable') IS NOT NULL)
    DROP TABLE #TestTable
GO 
CREATE TABLE #TestTable ( ID INT, Value INT )
INSERT INTO #TestTable(ID, Value) VALUES 
(NULL, 70),
(NULL, 70)
SELECT 
  ID
, Value
FROM #TestTable 
GROUP BY ID, Value
The output is:
ID     Value
NULL    70
However, I would like to have two rows. My desired result looks like this:
NULL    70
NULL    70
Is it possible to have two rows with GROUP BY?
UPDATE:
What I need is to count those rows:
SELECT 
COUNT(1) AS rows
FROM (SELECT 1 AS foo
    FROM #TestTable 
    GROUP BY ID, Value
)q
OUTPUT: 1
But, actually, there are two rows. I need output to have 2.