|
Oracle Error Code |
|
|
ora-00926 |
|
Description |
|
|
missing VALUES keyword |
|
|
Cause |
|
|
An INSERT statement has been entered without the keyword VALUES or SELECT. Either a VALUES clause or a SELECT subquery must follow the INSERT INTO clause. |
|
How to Solve |
|
|
|
Correct the syntax. Enter either a VALUES clause or a subquery after the INSERT INTO clause.
|
|
|
| Posts About Oracle Database Error ORA-00929 | | DBA: | You could correct this error by adding the missing VALUES keyword.
|
| | SQLMania: | insert into Customers(CustId,CustName)
values(1,'George Michael')
|
|
|
Do you have question or do you know about solution ?
Share with us. (No registration required)
|
|
Similar Errors |
|
|
|