SELECT *
FROM table1 t1
LEFT JOIN
table2
ON o.id =
(
SELECT o_id
FROM table2 t2
WHERE t2.c_id = t1.c_id
ORDER BY
t2.c_id DESC, t2.isHeadOffice DESC, t2.o_id DESC
LIMIT 1
)
Buat indeks pada table2 (c_id, isHeadOffice, o_id)
agar ini bekerja dengan cepat.
ORDER BY
klausa dalam subquery mungkin tampak berlebihan tetapi diperlukan untuk MySQL
untuk memilih indeks yang tepat.