Ora-00947: not enough values

Transfer: http://space.itpub.net/21213917/viewspace-607671
ORA-00947: Not enough values
This error occurred while performing the INSERT.
Insert into table 1 values (123,2423,12);
The structure of Table 1 has four columns, and obviously only three values are inserted, so this problem arises.
After the value of the column is added, OK.
If you want to insert only three values:
Insert into table 1(a,b,c) values (123,2423,12);
Just use this statement.

Read More: