How to fix the Oracle error PLS-00209: table ‘string’ is not in FROM clause?
In this post, you’ll learn more about the Oracle ErrorPLS-00209: table ‘string’ is not in FROM clause with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
PLS-00209: table ‘string’ is not in FROM clause
Reason for the Error PLS-00209: table ‘string’ is not in FROM clause
In a query, a table referenced by the select list is not named in the FROM clause.
How to fix the Error PLS-00209: table ‘string’ is not in FROM clause ?
You can fix this error in Oracle by following the below steps
Check the spelling of the table names, make sure each column in the select list refers to a table in the FROM clause, then re-execute the query.
Leave Your Comment