Viewing post 1 (of 1 total)
How do I count the total for each month and year for this query on Northwind database?
SELECT month(ShippedDate) AS Month, year(ShippedDate) AS Year, Orders.ShippedDate, Orders.OrderID, "Order Subtotals".Subtotal
FROM Orders INNER JOIN...
September 23, 2002 at 10:36 am
#437119