oracle error- ORA-00964: table name not in FROM list

Oracle error
oracle, oracle error, oracle blog
ORA-00964: table name not in FROM list


Cause: The table name referred in the select list is not specified in the from list.
Action: Make sure the name is correctly specified and matches one of the names in the from list.

See more oracle error here.

oracle error- ORA-00962: too many group-by / order-by expressions

Oracle error
oracle, oracle error, oracle blog


ORA-00962: too many group-by / order-by expressions
Cause: The group-by or order-by column list contain more than 1000 expressions.
Action: Use 1000 or less expressions in the group-by or order-by list.

See more oracle error here.

oracle error- ORA-00960: ambiguous column naming in select list

Oracle error
oracle, oracle error, oracle blog


ORA-00960: ambiguous column naming in select list
Cause: A column name in the order-by list matches more than one select list columns.
Action: Remove duplicate column naming in select list.



See more oracle error here.