I have an SQL query:
SELECT ....
WHERE CalendarDateTime.StartDate >= NOW()
How can I change the NOW() part to reference yesterday?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
But I guess
StartDateis 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: