I am trying to do a multi table insert but for some reason I am getting an error. I looked online and tried adding a semicolan and that didnt work.
The error is SQL Error: ORA-00933: SQL command not properly ended
Here is my code
Insert Into EMP (empno,ename,job,mgr,sal,deptno)
Value (4600,'BOB','CONSULT',4699,900,60),
(5300,'AILEEN','MANAGER',7839,1800,40),
(9873,'RYAN','CONSULT',4699,800,50)
Any help is appreciated, thanks.
You cannot perform several inserts in one statement. You have to write separate inserts for each of them, e.g.
Also, note that it’s
values, notvalue.