Which function forces group functions to include null values?
-
Group By
-
NVL
-
Order By
-
Include NULL
B
Correct answer
Explanation
Group functions (like SUM, AVG, COUNT) ignore null values by default. The NVL function converts null values to a specific default value (such as 0 or a placeholder) before the group function is applied, forcing group functions to include those records. Group By and Order By are syntax clauses, and 'Include NULL' is not a standard SQL function.