I've encountered a problem in EasyPHP 2.0b1 with MySQL queries using both left joins and aliases.
for example, if I have this query:
SELECT a.*,b.field1,c.field2
FROM table1 AS a, table2 AS b
LEFT JOIN table3 AS c ON c.id=a.idtable3
WHERE a.id='x' AND b.id=a.field3
I get this error:
#1054 - Unknown column 'a.idtable3' in 'on clause'
even if that field DOES exist!
While if I switch the FROM argument like this: 'FROM table2 AS b, table1 AS a' the query works correctly.
Does anyone know the reason of this beavior? Is it just a MySQL bug?
NOTE: this didn't happen in EasyPHP 1.9
--
Luciano S.
luciano AT allforweb DOT biz