The table I am looking in has the following columns:
department_number, amount, date_created.
I'm trying to create a table that shows the total amount for each department for each month in 2013, so it would look like this:
Department_number, Jan Amount, Feb Amount, March Amt, etc....
Is this a case for pivot tables, or should I just run a different query for each month and join them?