given two tables: create table test_1 ( a1 integer, a2 varchar2(100)); create table test_2 ( a1 integer, a3 varchar2(100)); when I write select * from test_1 t1 join test_2 t2 on (t1.a1 = then give me an auto sugestion of t2.a1 (the top most table alias that has the same column name)
↧