Question 1. of 15
Which of the following SQL statements selects the total number of orders from the Sales table?
OrderNumber
Date
CustomerID
1
12/12/2005
13
2
13/12/2005
17
SELECT AVG(OrderNumber) FROM Sales
SELECT SUM(OrderNumber) FROM Sales
SELECT COUNT(*) FROM Sales