PostgreSQL - Aggregate Functions and GROUP BY
What will be the output of this query on table
products with quantity values (5, 10, 15): SELECT COUNT(quantity), SUM(quantity), MIN(quantity), MAX(quantity) FROM products;?