vote up 0 vote down star

I have an SQL timestamp field and I need to group it by month like

Jan, Feb, Mar, ... but in numbers (01, 02, 03, ...)

I've tried

GROUP BY DATE_FORMAT(i.push_date, '%Y-%m')

But it's not working.

flag

that should work. you will have to post an actual, complete query and some sample data if you want help. – longneck Sep 23 at 14:15
Do you actually want to group by year+month or just month? – Greg Sep 23 at 14:16
Do you want it grouped by year and month, or solely month? – Greg Sep 23 at 14:16
1  
Whoa, two Gregs asking nearly the same question. At first I thought I had double-posted! – Greg Sep 23 at 14:18
yeah and month :) – NeoNmaN Sep 23 at 14:22

2 Answers

vote up 2 vote down check

Try to use the Month() method.

Select Month(<field>) from <table> group by Month(<column>);

what you get back will be the month in number form. You might to group by month and year which would be:

Select Year(<column), Month(<field>) from <table> group by Month(<column>), Year(<column>);

Date/Time Functions for MySql

link|flag
vote up 0 vote down
GROUP BY YEAR(i.push_date), MONTH(i.push_date)
link|flag

Your Answer

Get an OpenID
or

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