Wednesday, April 24, 2013

[Oracle] ORA-00923: FROM keyword not found where expected


ORA-00923: FROM keyword not found where expected

-----problem----

SQL> SELECT * FORM departments;
SELECT * FORM departments
         *
ERROR at line 1:
ORA-00923: FROM keyword not found where expected
There is some problem at the keyword "FROM", maybe is
  • missing
  • misspelled
  • misplaced

In my case, it's misspelled, I spell the "FROM" to "FORM" correct it is ok.
-----solution----

SQL> SELECT * FORM departments;
SELECT * FORM departments
         *
ERROR at line 1:
ORA-00923: FROM keyword not found where expected

No comments :

Post a Comment