Home Privacy Policy Feedback Link to us Site Map

Oracle/PLSQL: ORA-00925 Error


Error:

ORA-00925: missing INTO keyword

Cause:

You tried to execute an INSERT statement and missed the INTO keyword.

Action:

The options to resolve this Oracle error are:
  1. Try adding the missing INTO keyword and re-execute the statement.

For example, if you tried to execute the following:

INSERT suppliers
(supplier_id, supplier_name)
VALUES
(1000, 'IBM');


You would receive the following error message:


You could correct this error with the following statement:

INSERT INTO suppliers
(supplier_id, supplier_name)
VALUES
(1000, 'IBM');