up vote 3 down vote favorite
share [g+] share [fb]

I would like to calculate my total order amount in the previous month.

I got the query for getting the data for the present month from the current date.

SELECT SUM(goods_total) AS Total_Amount  FROM orders
WHERE order_placed_date >= date_sub(current_date, INTERVAL 1 MONTH);

Now how can I get Previous Months Data only, excluding this month.

For e.g. This month (July) I made $15,000 and last Month(June) i made $14,000.

I get the $15,000 by running the above query.

But i dont know how to calculate Previous Months.

link|improve this question

"WHERE AND" - take out the AND. – Artem Russakovskii Jul 16 '09 at 14:58
Thanks for pointing it out, i had it in there accidently. – Ibn Saeed Jul 16 '09 at 15:08
feedback

4 Answers

up vote 5 down vote accepted

Here you go, use this to get the date between the 1st of last month and the last of last month in MySQL:

... order_placed_date BETWEEN date_format(NOW() - INTERVAL 1 MONTH, '%Y-%m-01') AND last_day(NOW() - INTERVAL 1 MONTH)

link|improve this answer
You're welcome. I had the same problem a few months back and came up with that. – Artem Russakovskii Jul 16 '09 at 14:59
1  
Thank you it worked perfectly, the result matched my data. – Ibn Saeed Jul 16 '09 at 14:59
I am using current_date instead of NOW() – Ibn Saeed Jul 16 '09 at 15:09
NOW() is the same as CURRENT_TIMESTAMP, which really here is the same as CURRENT_DATE. – Artem Russakovskii Jul 16 '09 at 15:27
So theres no difference in using NOW() in place of current_date in terms of performance – Ibn Saeed Jul 16 '09 at 15:53
show 1 more comment
feedback

I found that Artem's query wasn't returning anything from the last day of the previous month(presumably as BETWEEN would calculate from time 00:00:00 of the last day).

This seems to work for me for the previous month.

order_placed_date BETWEEN DATE_FORMAT(NOW() - INTERVAL 1 MONTH, '%Y-%m-01')
AND DATE_FORMAT(NOW() ,'%Y-%m-01')
link|improve this answer
Thanks,ill try it – Ibn Saeed Jan 27 at 3:58
feedback

If you are lazy it's kinda convenient to use

...date_format(order_placed_date, '%Y-%m') = date_format(now() - INTERVAL 1 MONTH, '%Y-%m')

I think it also increases readability.

link|improve this answer
The problem with your query is that it will do a full table scan and will have horrible performance on large data sets because it will not use an index. The query with BETWEEN that I posted uses a range, so it'll be able to utilize an index. The readability... I think both are readable :) – Artem Russakovskii Jul 16 '09 at 15:28
Oh and FYI, MySQL doesn't support function based indexes. PostgreSQL supposedly does. – Artem Russakovskii Jul 16 '09 at 15:29
Sorry, I see that now. I'm just used doing that from tables with up to a couple hundred records. Thanks. – knopr Jul 16 '09 at 16:06
feedback

Here is another way i found:

SELECT SUM(goods_total) AS Total_Amount  FROM orders
WHERE SUBSTRING(o.order_placed_date FROM 1 FOR 7) =   SUBSTRING(CURRENT_DATE - INTERVAL 1 MONTH FROM 1 FOR 7)

This works as well.

link|improve this answer
Same problem as above, I would think. Run all SELECTs through EXPLAIN (just prepend EXPLAIN to each SELECT) and see what kind of information EXPLAIN gives you about the efficiency of each query. – Artem Russakovskii Jul 16 '09 at 15:30
That is, assuming you created an index on order_placed_date. You did, right? RIGHT? – Artem Russakovskii Jul 16 '09 at 15:31
Under Indexes, order_placed_date settings are: Non_Unique = 1, Seq_in_Index = 1, IndexType= BTREE – Ibn Saeed Jul 16 '09 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.