Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 2 variables which make up a date range which then needs to be searched in a MySQL database.

These are in the format 'Apr, 2011' and 'Mar, 2012' etc.

My SELECT...BETWEEN query requires '2011-04-01' and '2012-03-31', so whats the best way to provide this...

Convert the dates in PHP first?

Or is there a way to write the query to search using the original format? I tried with date_format (date, '%b, %Y') but the query found nothing.

share|improve this question

2 Answers

up vote 1 down vote accepted

Try this:

SELECT * FROM tablename 
WHERE dateCol BETWEEN DATE_ADD(DATE(STR_TO_DATE('Apr, 2011', '%b, %Y')), INTERVAL 1 DAY) AND LAST_DAY(STR_TO_DATE('Mar, 2012', '%b, %Y'));

Check the SQL FIDDLE DEMO

share|improve this answer
Hi. Your query works but doesnt it assume that the month ends on the 31st? What happens when this is not the case, will it cause a problem? – highfidelity Jan 4 at 13:36
@highfidelity Check my updated answer it will find last day of the month – Saharsh Shah Jan 4 at 14:34
Works great, thank you very much – highfidelity Jan 4 at 17:07
UPDATE: Actually the query does NOT find records with a date of the LAST day of the month ie 31 Mar 2012 - any ideas? – highfidelity Jan 6 at 10:25
What is the problem? Explain it with sqlfiddle demo because as per me it should work – Saharsh Shah Jan 6 at 10:42
show 2 more comments

You can use str_to_date

select * from tableName where fieldName BETWEEN STR_TO_DATE('May 1, 2013','%Y-%m,%d') AND STR_TO_DATE('May 1, 2013','%Y-%m,%d')

Or you can do it with php as below:

$month = date("m",strtotime("Apr, 2011"))+1;
$year = date("Y",strtotime("Apr, 2011"));
$lastday = mktime(0, 0, 0, $month, 0,$year);
$lastday = strftime("%d", $lastday);

$toDate = date("Y-m-$lastday",strtotime("Apr, 2011"));
$fromDate = date("Y-m-1",strtotime("Mar, 2012"));

echo $query = "select * from tableName where fieldName BETWEEN '$fromDate' AND '$toDate'";

[edit] : convert year to 4 digit.

demo

share|improve this answer
Kindly justify your downvote... – Suresh Kamrushi Jan 4 at 12:34
I haven't downvoted but OP's date won't have a day. – juergen d Jan 4 at 12:37
Do you think, 'May 1, 2013' would really correspond with '%Y-%m,%d ? (no downvote from me for that though) – KekuSemau Jan 4 at 12:39
You need to provide day also else it wont work. – Suresh Kamrushi Jan 4 at 12:41
@SureshKamrushi: That is not true. MySQL will create a date without a day given. – juergen d Jan 4 at 12:45
show 6 more comments

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.