SQL - Aggregate Functions
What will be the output of this query on table
orders with column price?SELECT COUNT(price), SUM(price), AVG(price) FROM orders WHERE price > 100;
