***ต้องเปลี่ยน type ของ field work.work_start กับ work.work_stop เป็น datetime เหมือน up_work.file_date1
******ถ้าใช้ datetime ต้องคำนึงถึงเวลาด้วย*******
1 จำนวน ที่ส่ง ตามกำหนด
select count(*) from up_work inner join work on up_work.w_id=work.w_id and up_work.file_date1 between work.work_start and work.work_stop
where up_work.sub_id='CMM483' and up_work.w_id='2'
2 จำนวนที่ส่ง เกินกำหนด
select count(*) from up_work inner join work on up_work.w_id=work.w_id and up_work.file_date1 >work.work_stop
where up_work.sub_id='CMM483' and up_work.w_id='2'