create table t1 (id number)
Table created.
create table t2 (id number)
Table created.
create table t3 (id number)
Table created.
t1.id is invalid identifier
select *
from t1,
t2
join t3
on t3.id = t2.id and t3.id = t1.id
ORA-00904: "T1"."ID": invalid identifierMore Details: https://docs.oracle.com/error-help/db/ora-00904
works
select *
from t1
cross join t2
join t3
on t3.id = t2.id and t3.id = t1.id
no data found