PostgreSQL - Aggregate Functions and GROUP BY
Given the table
sales with column amount containing values (100, 200, NULL, 300), what is the result of this query?SELECT COUNT(amount), SUM(amount), AVG(amount), MIN(amount), MAX(amount) FROM sales;
