Hi,
I have a table Sales, I want to have a query to display total sales in each year..
The table is like this:
How can I get a query so it will display total order for each year (2011, 2012, 2013)?
Thanks!
I have a table Sales, I want to have a query to display total sales in each year..
The table is like this:
Code:
|OrderID|OrderDate|CustomerID|Comment|
|1 |1/1/2011 |12 | |
|2 |5/1/2011 |13 | |
...
|600 |1/12/2013|5 | |
How can I get a query so it will display total order for each year (2011, 2012, 2013)?
Thanks!