Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はSQLクエリを持っています:
SELECT .... WHERE CalendarDateTime.StartDate >= NOW()
NOW()部品を昨日参照するように変更するにはどうすればよいですか?
NOW()
SELECT .... WHERE CalendarDateTime.StartDate >= NOW() - INTERVAL 1 DAY
しかし、私StartDateは DATE だと思います。実際に必要なのは、現在のソリューションが真夜中にしか行わない今日のイベントを含めることです。その場合、より適切な解決策は次のとおりです。
StartDate
SELECT .... WHERE CalendarDateTime.StartDate >= DATE(NOW())