Concept Flow - NULL behavior in aggregate functions
Start with data set
Check each value
Is value NULL?
Yes→Skip value
No
Include value in aggregate
Calculate aggregate result
Return final result
Aggregate functions process each value, skipping NULLs, then compute the final result from non-NULL values.