SQL - Aggregate Functions
Given the table
What is the result of the query:
Sales with rows:Product | Quantity
Apple | 10
Banana | 5
Apple | 15What is the result of the query:
SELECT SUM(Quantity) FROM Sales WHERE Product = 'Apple';