The following SQL statement finds the sum of the "Quantity" fields in the "OrderDetails" table:
SELECT SUM(Quantity)
FROM OrderDetails;
FROM OrderDetails;
Practice Excercise Practice now
The following SQL statement finds the sum of the "Quantity" fields in the "OrderDetails" table:
Practice Excercise Practice now