SELECT "Rental".*, "Rental".ora_rowscn as TimeStamp FROM "Rental"
inner join "UserBranch" on "UserBranch"."fkBranchId" = "Rental"."fkBranchId"
WHERE "Rental"."IsDeleted"='N' ;
This query returns me invalid identifier exception in oracle 10g. I'm a beginner and don't know why the exception is coming. please help. Thank you.
without joins it works perfectly for me
Please try to get your values with the below query :