Hi,
I'm trying to put together a SQL Query which will produce the data in the following layout:
Customer | Date | Quantity | Volume | Date | Quantity | Volume |
Customer 1 | Jan 12 | 33443 | 22232 | Jan 13 | 22334 | 323355 |
Customer 1 | Feb 12 | 3334855 | 383874 | Feb 13 | 2229 | 88475 |
Customer 2 | Jan 12 | 228938 | 3384 | Jan 13 | 998 | 9898 |
Customer 2 | Feb 12 | 33847 | 29283 | Feb 13 | 223 | 221 |
This will allow our Sales team to quickly see the differences between each month by year.
Our Sales Table looks like this:
AccountID
AccountName
DateofSale
Quantity
Volumne
If someone could help me it would be greatly appreciated.
Thanks!!