SANTO MANUALE !!!


allora ho trovato la soluzione per rendere compatibili le query left join da Mysql 4 a Mysql 5:


codice:
...FROM table1 as t, table2 as t2, ....
diventa
codice:
.. FROM (table1 t, table2 t2, ....) ....
mentre

codice:
...LEFT JOIN .... ON t.id = t2.id
diventa

codice:
... LEFT JOIN .... ON (t.id=t2.id)