I have the following MySQL:
select `car`.`ID` AS `ID`,
`title`,`text`
from `car`
LEFT JOIN `truck` as bigcar ON bigcar.`ID` = `car`.`truckID`
WHERE `ID` ='1';
For some reason I'm getting
Column 'ID' in where clause is ambiguous
For complicated code reasons, I'm not renaming the alias as something else (such as ID2)
Shouldn't this work?