You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select t1.*, t2.field1, t3.* from
table1 as t1 inner join table2 as t2
on t1.id = t2.id -- 1st join condition
inner join table3 as t3
on t2.fk = t3.id -- 2nd join condition
then when I am in the process of typing the 2nd join condition, the autocomplete engine recognizes the list of t3 fields but when I select one of them it brings the full (unaliased) name of the table, i.e table3.
For the 1st condition, autocomplete simply doesn't work