Doctrine: Unable to execute either CROSS JOIN or SELECT FROM Table1, Table2?
- by ropstah
Using Doctrine I'm trying to execute either a 1. CROSS JOIN statement or 2. a SELECT FROM Table1, Table2 statement. Both seem to fail.
The CROSS JOIN does execute, however the results are just wrong compared to executing in Navicat.
The multiple table SELECT doesn't event execute because Doctrine automatically tries to LEFT JOIN the second…