Appointment_duration、mechanic_Firstname、mechanic_lastname、customer_firstname、および customer_lastname を最大時間と最小時間で表示する mysql に書き込もうとしていますが、私のコードでは間違った結果が返されます.最大時間と最小時間と対応する名前のみが必要です。だから2列
SELECT
Min(Appointment.Appointment_duration) AS MINOfAppointment_duration,
Max(Appointment.Appointment_duration) AS MAXOfAppointment_duration,
mechanic_Firstname, mechanic_lastname, customer_firstname, customer_lastname
FROM Appointment, mechanic, Customer
WHERE (mechanic.mechanic_ID=Appointment.mechanic_ID) AND (customer.customer_ID=Appointment.customer_ID);
予定表のレコード
Appointment_ID Appointment_DATE Appointment_Duration Mechanic_ID Customer_ID
12 08/01/2007 0:35:00 1 5684
13 01/01/2009 2:15:36 6 2534
14 06/12/2010 0:05:29 7 7423