Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following query:

SELECT DATE_FORMAT( DATE, '%M' ) AS
MONTH , DATE_FORMAT( DATE, '%y' ) AS year, DEVICE, COUNT( * ) AS cnt
FROM users
GROUP BY year,
MONTH , DEVICE

I'm trying to order it by Year and Month, so something like:

November 11

December 11

January 12

etc..

How can I do this?

share|improve this question

2 Answers

up vote 1 down vote accepted

You can use the MySQL YEAR and MONTH inside the GROUP and ORDER BY clauses:

SELECT
DATE_FORMAT( DATE, '%M' ) AS MONTH,
DATE_FORMAT( DATE, '%y' ) AS year,
DEVICE,
COUNT( * ) AS cnt
FROM users
GROUP BY YEAR(DATE), MONTH(DATE), DEVICE
ORDER BY YEAR(DATE), MONTH(DATE)

You can replace DATE_FORMAT( DATE, '%y' ) with YEAR(DATE) as well.

share|improve this answer

To order the things like you want, use ORDER BY:

SELECT DATE_FORMAT( DATE, '%M' ) AS
MONTH , DATE_FORMAT( DATE, '%y' ) AS year, DEVICE, COUNT( * ) AS cnt
FROM users
GROUP BY year, MONTH , DEVICE
ORDER BY DATE_FORMAT( DATE, '%y' ), DATE_FORMAT( DATE, '%m' )
share|improve this answer
Would return APRIL, AUGUST, DECEMBER, FEBRUARY... Rather than JANUARY, FEBRUARY, MARCH, APRIL... OP wants chronilogical order by the looks of it. – GarethD May 17 '12 at 9:36
@GarethD DATE_FORMAT( DATE, '%m' ) returns 01, 02, 03, etc. – aF. May 17 '12 at 9:41
@GarethD only DATE_FORMAT( DATE, '%M' ) returns APRIL, AUGUST, etc. – aF. May 17 '12 at 9:41
1  
My bad. Did not look carefully enough. Have yourself an upvote! :) – GarethD May 17 '12 at 9:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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