Forum Moderators: open

Message Too Old, No Replies

Count records in mysql table for specific month

timestamp and datetime

         

sunroof

1:27 pm on May 24, 2009 (gmt 0)

10+ Year Member



Hello guys,

I'm trying to count all the records for a specific month in a table which regdate is timestamp instead of datetime.

The table is phpbb table phpbb_users (user_id, regdate,...).

I need to count all users registered in the specific month (i.e. February 2009, January 2006,... etc).

Thank you

lukesimswilson

3:40 pm on May 27, 2009 (gmt 0)

10+ Year Member



To display a Count and the month added for the whole table use the query below.

SELECT count(user_id) as Counter, DATE_FORMAT(regdate,"%M %Y") as DateRegistered FROM table_name GROUP BY DateRegistered

To show a count of all the records for April 2009 for instance you can use:

SELECT Count(*) FROM table_name WHERE DATE_FORMAT(regdate,"%M %Y") = "April 2009"

Try that