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 selecting some data from mysql with between, and i am missing the last day i think.

My Sample Data is:

2012-11-30 18:23:20,  
2012-11-30 18:24:54,  
2012-11-30 18:28:03,  
2012-12-01 11:50:36,  
2012-12-07 00:22:44

Query

SELECT * FROM  `table` WHERE TIMESTAMP BETWEEN  '2012-11-30' AND  '2012-12-07'

Result is all my Sample Data but the 2012-12-07 date is missing. Can anybody explain how i can feth it too? Is there any other way than adding +1 to the day?

share|improve this question

1 Answer

up vote 1 down vote accepted

do it like this:

SELECT * FROM  `table` 
WHERE TIMESTAMP BETWEEN  '2012-11-30 00:00:00' AND  '2012-12-07 23:59:59'

so that you can catch all records with your start date and end date.

share|improve this answer

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.