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 am queering a data in a date range in MySQL. When I select the date range BETWEEN '2013-01-19 00:00:00' AND '2013-01-21 00:00:00' the data is shown only 19 and 20 date but not the 21.

When I write 22 over 21 then data shown from 19-21 not include 22. Now how should I write a query to include the selected date also in date range.

Eg: BETWEEN '2013-01-19 00:00:00' AND '2013-01-21 00:00:00' 
Show the data from 19,20,21 Jan 2013.

Please help me

share|improve this question

2 Answers

up vote 2 down vote accepted

Actually it includes 2013-01-21 if and only if the recorded date and time is 2013-01-21 00:00:00. the exclusive date starts on 2013-01-21 00:00:01 and up

so to solve your problem, use 23:59:59 to include the whole time of the selected day.

BETWEEN '2013-01-19 00:00:00' AND '2013-01-21 23:59:59'
share|improve this answer
1  
Thank you very much JW :) – Mohsinjan110 Jan 22 at 7:44
you're welcome :D. btw, using DATE() function kills the index if you have define one. – JW 웃 Jan 22 at 7:44

If you want to select data based only on the date, use the function DATE() to extract the date part of the data. I.e.

DATE(fieldname) BETWEEN '2013-01-19' AND '2013-01-21'
share|improve this answer
this method also do my work but I prefer JW :) – Mohsinjan110 Jan 22 at 9:38

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.