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 relation in my schema:

Entries:
entryId(PK) auto_inc
date date

In order to count the total entries in the relation I use a query in my php like this:

$sql = mysql_query("SELECT COUNT(*) as Frequency FROM Entries WHERE date = '$date'");

My question is how can I count the number of entries for the CURRENT month..

share|improve this question
warning your code is susceptible to sql injection. – Daniel A. White Aug 25 '11 at 23:37
Urm...really? How is that? – user906568 Aug 25 '11 at 23:38
Like this: xkcd.com/327 – user194076 Aug 25 '11 at 23:39
3  
@Daniel It's a little presumptuous to assume that without knowing how the $date variable is initialised. – Phil Aug 25 '11 at 23:42
1  
I just want to comment on Phil and Noximos answers. While they will get you the result, they will not be able to use an index on the date column, so if performance issues are a concern on this, then I'd suggest the more complicated approach I suggested. Otherwise Phil's would work, and Noximo's would work, but would also find rows for any year, which could be a problem depending on your data. Noximo's could be made to work by adding AND YEAR(date) = YEAR(CURDATE()) – gview Aug 25 '11 at 23:52
show 3 more comments

3 Answers

up vote 0 down vote accepted

Try this

SELECT COUNT(1) AS `Frequency`
FROM `Entries`
WHERE EXTRACT(YEAR_MONTH FROM `date`) = EXTRACT(YEAR_MONTH FROM CURDATE())

See EXTRACT() and CURDATE()

Edit: Changed NOW() to CURDATE() as it is more appropriate here

share|improve this answer
can I ask what the 1 represents in the COUNT function – user906568 Aug 25 '11 at 23:58
@user Nothing in particular, just something I do out of habit. See stackoverflow.com/questions/1221559/count-vs-count1 – Phil Aug 26 '11 at 0:00

Try

 $sql = mysql_query("SELECT COUNT(*) as Frequency FROM Entries WHERE MONTH(date) = MONTH(NOW()) );
share|improve this answer
1  
That will match same months across different years. You're also missing the closing quote on your query string – Phil Aug 25 '11 at 23:49
Youre right, I've missed that problem. Sorry for misinformation... – Noximo Aug 26 '11 at 0:01

You want a between query based on your date column.

WHERE date BETWEEN startdate AND enddate.

Between is equivalent to date >= startdate AND date <= enddate. It would of course be also possible to just use >= AND < explicitly which would simplify it a bit because you don't need to find the last day of the month, but just the first day of the following month using only DATE_ADD(..., INTERVAL 1 MONTH).

However startdate and enddate in this case would be derived from CURDATE().

You can use CURDATE(), MONTH(), DATE_ADD and STR_TO_DATE to derive the dates you need (1st day of current month, last day of current month). This article solves a similar problem and all the techniques needed are shown in examples that you should be able to adapt:

http://www.gizmola.com/blog/archives/107-Calculate-a-persons-age-in-a-MySQL-query.html

The first day of the current month is obvious YEAR-MONTH(CURDATE())-01. The last day you can calculate by using DATE_ADD to add 1 Month to the first day of the current month, then DATE_ADD -1 Days.

update- Ok, I went and formulated the full query. Don't think str_to_date is really needed to get the index efficiency but didn't actually check.

SELECT count(*) 
FROM entries
WHERE `date` BETWEEN 
CONCAT(YEAR(CURDATE()), '-', MONTH(CURDATE()), '-', '01')
AND
DATE_ADD(DATE_ADD(CONCAT(YEAR(CURDATE()), '-', MONTH(CURDATE()), '-', '01'), INTERVAL 1 MONTH), INTERVAL -1 DAY);
share|improve this answer
+1 Though you're assuming there is an index on date – Phil Aug 26 '11 at 0:22
@Phil, yes definately. And as I said, yours is simple, elegant, and would do the job for many people, who don't want to crank out a monstrosity like mine ;) – gview Aug 26 '11 at 0:40
Too bad MySQL doesn't have a date truncate function like Oracle. Would have made your solution simpler – Phil Aug 26 '11 at 0:47

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.