Here is my code and obviously there is something wrong with it.
INSERT INTO qdel(delno,delqty)
VALUES
(192,3422);
(1,2);
(203,20);
How to insert multiple rows of data in one statement?
You trying to insert mutiple row in same table.
But your process is not valid in oracle
Try like this
INSERT ALL
INTO qdel(delno,delqty) VALUES (192,3422)
INTO qdel(delno,delqty) VALUES (1,2)
INTO qdel(delno,delqty) VALUES (203,20)
select * from dual
,not a;. The semicolon;terminates the complete statement