How to Insert Multiple Rows in One Statementby Ed ChenApril 28, 2022May 25, 2022Multiple Rows Insert To insert rows into a table, you can do it one by one. insert into fruits values ('Apple', 2); insert into fruits… Read More »How to Insert Multiple Rows in One Statement
How to Resolve ORA-01400: cannot insert NULL intoby Ed ChenNovember 27, 2019October 17, 20212 CommentsORA-01400 ORA-01400 means that there's a column which was found as NOT NULL is not listed in the INSERT statement, you have to provide a… Read More »How to Resolve ORA-01400: cannot insert NULL into