Problems / Average Order Value / Editorial
customer_id
AVG() is equivalent to SUM() / COUNT(). Like SUM(), it ignores NULLs — both in the numerator and denominator.
AVG()
SUM() / COUNT()
SUM()
Solve Average Order Value yourself →