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.
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.
Copyright © 2021 Jogjafile Inc.
RightandLeftare reserved keywords name for right and left joinchange
rightandleftto some other alias name.