Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Count(*) under grouping

    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...

Viewing post 1 (of 1 total)