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 an SQL query:

SELECT ....
WHERE CalendarDateTime.StartDate >= NOW()

How can I change the NOW() part to reference yesterday?

share|improve this question
Try the solution in this question, but with a minus operator. stackoverflow.com/questions/3887509/mysqls-now-1-day – Nick Vaccaro Nov 19 '12 at 22:13
possible duplicate of How to get today's / yesterday's data from MySQL database? – Leigh Nov 20 '12 at 18:16

1 Answer

up vote 6 down vote accepted
SELECT ....
WHERE CalendarDateTime.StartDate >= NOW() - INTERVAL 1 DAY

But I guess StartDate is a DATE and what you actually want is to include today's events, which your current solution does only at midnight. In that case the more appropriate solution is:

SELECT ....
WHERE CalendarDateTime.StartDate >= DATE(NOW())
share|improve this answer
Perfect, Thank you. Will accept as soon as SO lets me. – Fraser Nov 19 '12 at 22:18
1  
This seems to be from Silverstripe Event Calendar where StartDate seems to be a Date, so see my revised answer. – AndreKR Nov 19 '12 at 22:33
You are very correct! Thank you. – Fraser Nov 19 '12 at 22:35

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.