How do I make this select pull a secod value from the table DROPLIST? If I add another LEFT OUTER JOIN droplist ON (client.how_apply = droplist.id)
I get an error. How do I do two separate joins to the same table in MySQL?
Thanks
SELECT managers.managerid,
managers.mgr_email,
managers.mgr_name,
managers.mgr_office,
managers.mgr_phone,
client.coid,
client.eng_no,
client.coname,
client.managerid,
client.title,
droplist.value as fee_how_apply,
droplist.name
FROM client
LEFT OUTER JOIN droplist ON (client.Fee_how_apply = droplist.id)
LEFT OUTER JOIN managers ON (client.managerid = managers.managerid)
WHERE
(
(client.coid = 4644)
)