Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

getting ORA-00918: column ambiguously defined in dev, but not in QA

Rob JonesDec 21 2022

hi,
Using the following Oracle version in both our DEV and QA databases.
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
I've got a problem where the query below generates ORA-00918: column ambiguously defined in dev, but not in QA.

select star.tpa.tpa_id
from   star.plan
join   star.tpa
on     star.tpa.tpa_id = star.plan.tpa_id
join   star.tpa
on     star.tpa.tpa_id = star.plan.tpa_id  

Is this something you could help me out with? Thanks!

Comments
Post Details
Added on Dec 21 2022
5 comments
1,782 views