0

我有医生、时间段和预约表。这样医生的has_many时间段和医生has_many的预约。时隙has_one预约。

时隙表包含医生 ID 和可用时隙(这包含预约时间)。约会表有doctor_id和。timeslot_idappointment_date

我想获取预约表中没有的特定医生的时间段(意味着没有任何患者参加)。

4

1 回答 1

0
select columns from timeslot left join appointment on 
timeslot.doctor_id=appointment.doctor_id
timeslot.time_slot_id=appointment.time_slot_id where appointment.doctor_id is null
于 2013-11-07T11:37:58.090 回答