I have two tables, and both have 'id' attribute, but return of the getSQL() function looks like this:
'SELECT car
.id
AS id
, car
.color
AS color
, car
.seat
AS seat
, person
.name
AS name
, person
.age
AS age
... <- I'm missing here the person's 'id'.
Is there any option for the getSQL() function, that solves this problem and at each 'id' collision it will get a unique alias name? (e.g. : 'tablename_id')