Oracle Insert Multiple Rowsby Ed ChenApril 28, 2022August 18, 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 »Oracle Insert Multiple Rows
How to Resolve ORA-01400: cannot insert NULL intoby Ed ChenNovember 27, 2019May 29, 20232 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