SQL - Aggregate Functions
Given the table
orders with column amount, what will this query return?SELECT COUNT(*), MAX(amount), MIN(amount) FROM orders;
