I I need to update the Subject for this whole table adding the Post Code each subject.
However, this information is on a 3rd layer table not connected directly to it. So I have to pass through 1 table to reach the information I need.
Basically is like that
Appointments.table > ClientBooking.Table > ClientInfo
I tried to link those tables but of course, I need to bring 1 result each time here is is where I lack some knowledge
UPDATE Appointments
SET Subject = Subject + (SELECT ZipCode
FROM ClientInfo
INNER JOIN ClientBooking ON ClientInfo.ClientID = ClientBooking.ClientID
INNER JOIN Appointments ON ClientBooking.AppointmentID = Appointments.UniqueID
WHERE Appointments.UniqueID = "EVERY ID one BY ONe")