I am wondering if there is a way in MySQL 4.1+ to track specific dates between date ranges in my records?
For a quick example, I have two records with date-time ranges, for example
ID | Activity | Start Date | End Date 1 Closed 1/1/11 11:00:00 1/4/11 11:00:00 2 Open 1/15/11 10:00:00 1/19/11 09:00:00
I want to know if there is a way to get dates between โStart Dateโ and โEnd Dateโ for each of these entries? For instance:
1/2/11, 1/3/11
and
1/16/11, 1/17/11, 1/18/11
Or at least a way to approach this and use PHP to end the rest of the way? Thanks!
source share