My query is :
select right.* from Table1 JOIN Table1 right on (right.field1 = left.field1)
I need to expand this query even more with where clause. But this itself is throwing, ORA-00904 : invalid identifier error.
Right
and Left
are reserved keywords name for right and left join
change right
and left
to some other alias name.