問題
カスタム SQL を含む Oracle データベースに接続するときに、次のエラーが発生する場合があります。ORA-00918: column ambiguously defined (ORA-00918: 列の定義が不明瞭です)
select usertest1.col1, usertest2.col1, from usertest1, usertest2
select usertest1.col1 as 1_col1, usertest2.col1 as 2_col1, from usertest1, usertest2