Viewing 4 posts - 1 through 4 (of 4 total)
Total quantity
SELECT sum(SalePrice)
FROM Products p
INNER JOIN Sales s ON s.ProductID = p.ProductID
group by ProductName
September 18, 2011 at 10:06 am
The output should be the total quantity sold for each product and return a print statement that reads (as an example) a total of 7 monitor(s) were sold you can...
September 18, 2011 at 8:43 am
Hi thank you for ur help
the output should be print statement
for example total quantity sold for each product and return a print statement that reads (as an example) a total...
September 18, 2011 at 8:42 am
how can i get the total quantity.
September 17, 2011 at 1:54 pm
Viewing 4 posts - 1 through 4 (of 4 total)