Jump to content

2 questions


dadamssg

Recommended Posts

im storing events in my database with start datetimes and end datetimes...they can span a few minutes or days..just depends. Im trying to get a query that will pull up all the events that are goin on on a particular day, i can't seem to get the format right for the date though.

This query works for pulling up everything today but when i try to switch curdate() to an actual date like (2009-02-2) it'll go through but won't pull up anything when theres things to pull up.

 

SELECT * FROM test WHERE DATE(start) <= CURDATE() AND DATE(end) >= CURDATE() ORDER BY start ASC

 

question 2 is, for the query above...how would i change the curdate() to also include the time so the query won't pull up events that are today but have already ended?

Link to comment
https://forums.phpfreaks.com/topic/143386-2-questions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.