So Zend_db_select has the methods
`joinUsing(table, join, [columns]) and joinInnerUsing(table, join, [columns])`
`joinLeftUsing(table, join, [columns])`
`joinRightUsing(table, join, [columns])`
`joinFullUsing(table, join, [columns])`
etc
but what if you want to join 3 or more tables (eg for a many to many association)....eg: this query:
SELECT * FROM (j LEFT JOIN e ON j.id = e.eee) LEFT JOIN w ON w.www = e.id
how would you go about doing this with zend_db_select
Try doing ... but i am not so sure works with two fields but have not tried with 3 fields
you try to build query, and also you can check query by
die((string)$select)