Computer Science, asked by harsha2983, 1 year ago

How are NULL values treated by aggregate functions ?

Answers

Answered by expert1262
8

Hi, This is your answer

According to the SQL Reference Manual section on Aggregate Functions: All aggregate functions except COUNT(*) and GROUPING ignore nulls. You can use the NVL function in the argument to an aggregate function to substitute a value for a null. COUNT never returns null, but returns either a number or zero.

Hope you like my answer ☺☺

Similar questions