Computer Science, asked by akranchiabhay1163, 1 year ago

Which aggregate function doesn't ignore null values?

Answers

Answered by shivanshusingh97
0

The reason COUNT(*) doesn't ignore NULLs is because it counts rows, not column values. The concept of NULL doesn't apply to a row as a whole. Other than COUNT(*) , there is only one other aggregate function that doesn't ignore NULLs, and that is GROUPING. All other aggregate functions ignore NULLs.

Similar questions