is it possible to right this query
`$sql = '
SELECT *
FROM employers
LEFT JOIN jobwall ON jobwall.employers_employer_id = employers.employer_id
WHERE employers.employer_id
IN (SELECT employers_employer_id FROM jobwall)
';
$this->db->query($sql);`
as active-record in codeigniter

LEFT JOINto jobwall combined with theWHERE...INclause. If employers.employer_id has to beINthat subquery, then couldn't you simply use anINNER JOINinstead? – Joe Stefanelli Jan 4 '11 at 22:32employers_employer_id. If the employers.employer_id has to beINthat subquery, you've effectively turned theLEFT JOINinto anINNER JOIN. So, I think the query could be simplified to just:SELECT * FROM employers INNER JOIN jobwall ON jobwall.employers_employer_id = employers.employer_id– Joe Stefanelli Jan 4 '11 at 22:40