SQL - Aggregate Functions
Given the table
orders with column discount containing values (10, NULL, 10, NULL, 15), what is the result of this query?SELECT AVG(COALESCE(discount, 0)) FROM orders;
