Counting rows by month name

I'm trying to convert a date format dd/mm/yyyy to display the total numbers of each month for my query. For example:

23/04/2004
24/04/2004
02/05/2004
05/06/2004

I need it to display:

 April - 2
   May - 1
  June - 1

Any information much appreciated.


    Requires Free Membership to View

    By submitting your registration information to SearchOracle.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchOracle.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

You say "a date format dd/mm/yyyy" so let's assume that this is actually a DATE or DATETIME column, and not a CHAR or VARCHAR column. This assumption is necessary because otherwise we cannot use date functions on the column. (Database systems do not store dates internally in dd/mm/yyyy format. Most databases use an integer to store dates, where the integer is the number of days since some base date like December 31, 1899. But I digress.)

To count the number of rows by month, we can do something like this:

select month(datecol) as themonth
     , count(*) as rows
  from yourtable
group
    by month(datecol)

This will give the results we want, but they will look like this:

4 2
5 1
6 1

To produce month names instead of month numbers, we will need some sort of translation function. Many database systems include a date function specifically for month names, but if yours doesn't, you can do it with substrings. Just create a string consisting of month names, making sure they all have the same length (9 characters) by padding with blanks as necessary. Then use the month number to index into the string and pull out the monthname as a substring.

Here's an example of this in MySQL syntax (even though MySQL has the MONTHNAME function which could be used for this purpose):

select month(datecol) as themonth
     , substring(
        concat('  January'
              ,' February'
              ,'    March'
              ,'    April'
              ,'      May'
              ,'     June'
              ,'     July'
              ,'   August'
              ,'September'
              ,'  October'
              ,' November'
              ,' December'
              )
         , month(datecol)*9 - 8
         , 9 ) as monthname
     , count(*) as rows
  from yourtable
group
    by month(datecol)
order
    by month(datecol)

Notice that we're still sorting by the numeric month. This is important if we don't want our results to come out as April, August, December, February...


This was first published in August 2004

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.