[Solved] Why does insertion command is giving an error about new operator? [closed]


The table name in the INSERT is wrong. And the column list must match the values list.

Try INSERT correct table name (target columns) Values (vales for each column).

Additionally if you omit any columns the insert will fail unless they have defaults.

solved Why does insertion command is giving an error about new operator? [closed]