Inner join et nom de colonne dupliqué
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
drop table toto3
create table toto1 (l1 number , i1 number) ;
insert into toto1 values (null, 1) ;
create table toto2 (l1 number , i2 number) ;
insert into toto2 values (20, 1) ;
create table toto3 (l3 number , i3 number) ;
insert into toto3 values(30, 1) ;
select l1
from toto3
inner join toto1 on toto1.i1= toto3.i3
inner join toto2 on toto1.i1= toto2.i2 |
Qui peut me dire ce qui cloche dans la selection finale ?:roll: (c'est une boutade je sais quoi mais je ne sais pas l'expliquer :aie:)