我正在使用leftJoinlaravel 从我的数据库中检索数据。我有两个表名users,appointments在我的约会表中有一个字段名称doctor_id,其中包含与用户 ID 相关的医生 ID。两者的 id 值是相同的。如果表中的列 id 值与表中的列约会值与 where 子句 where匹配,我需要表中的医生姓名和users表中的医生姓名。但是当我执行查询时,它返回空响应。appointment_datestatusappointmentsusersappointmentspatient_id = $patientID
代码
$patientID = $request->patientID;
$prevAppointments = DB::table('appointments')
->leftJoin('users', 'appointments.doctor_id', '=', 'users.id')
->select(
'users.first_name',
'users.last_name',
'appointments.appointment_date',
'appointments.status'
)
->where('appointments.patient_id', $patientID)
->get();
return($prevAppointments);
用户表
约会表
MMTTMM
PIPIONE