Re: [GENERAL] UPDATE .. JOIN?

2013-04-11 Thread ledwabakg
Replace the tables on this query with your joined tables Update service_reminderschedule srs set reminder_sent = false from ( select ss.fk_man_service_id, ss.serviceschedule_id, v.vehicle_id from serviceschedule ss inner join manufactureservices ms

Re: [GENERAL] UPDATE .. JOIN?

2013-04-11 Thread ledwabakg
Re: Updating a table with joins I have been trying to achieve the same thing for quite a period of months but could not get the right query, finally now i am sorted, this one works like a charm for me. Replace the tables on this query with joined tables Up