I have these two MySQL tables:
desc students;
+---------------------------+---------------+
| Field | Type |
+---------------------------+---------------+
| student_id | INT(11) |
| student_firstname | VARCHAR(255) |
| student_lastname | VARCHAR(255) |
+---------------------------+---------------+
desc studentabsence;
+---------------------------+---------------+
| Field | Type |
+---------------------------+---------------+
| student_id | INT(11) |
| student_absence_startdate | date |
| student_absence_enddate | date |
+---------------------------+---------------+
If I run the following query:
SELECT
*
FROM
students s
INNER JOIN studentabsence sa
ON s.student_id = sa.student_id
WHERE s.student_id = '1'
I get the following output:
+------------+-------------------+-----------------+------------+---------------------------+-------------------------+
| student_id | student_firstname | student_lastname| student_id | student_absence_startdate | student_absence_enddate |
+------------+-------------------+-----------------+------------+---------------------------+-------------------------+
| 1 | John | Doe | 1 | 2012-08-01 | 2012-08-08 |
+------------+-------------------+-----------------+------------+---------------------------+-------------------------+
Now, I have a <form> where a user can select a student, and a date range. I wonder if there is possible to compare the two dates of the user choice to the database values and, if there is a match echo all the business days between that range where the student has data.
So, using the above example if a user posts the following form:
student_id = '1'
student_absence_startdate = '2012-08-02'
student_absence_enddate = '2012-08-06'
I would like to echo:
2012-08-02
2012-08-03
2012-08-06
Any pointers in the right direction is higly appreciated.
varchartodate. Then you can perform date operations on it – Bhuvan Rikka 웃 Aug 13 '12 at 9:50