我有 3 张桌子时段、日程安排和 schedule_daypart。表中数据如下,
Daypart表有4个条目
id | start_time | end_time
1 | 09:00:01 | 12:00:00
2 | 12:00:01 | 18:00:00
3 | 18:00:01 | 23:59:59
4 | 00:00:01 | 09:00:00
Schedule table
id | start_date | end_date
1 | 10-Sept-2013 | 12-Sept-2013
2 | 10-Sept-2013 | 15-Sept-2013
schedule_daypart
id | schedule_id | daypart_id
1 | 1 | 1
2 | 1 | 2
3 | 1 | 3
4 | 1 | 4
5 | 2 | 1
6 | 2 | 2
7 | 2 | 3
现在我想编写存储过程,它将采用日期和时间参数并给出 schedule_id 和 daypart_id。例如,如果我提供日期为 11-Sett-2013 和时间为 13:30:00,那么输出将是
schedule_id | daypart_id
1 | 2
1 | 3
1 | 4
2 | 2
2 | 3