I'm trying to insert multiple rows into a table without specifying the column names, however, I get an error on the first comma that its a partially recognized rule and it's giving me an error
INSERT INTO MY_EMPLOYEE
VALUES(126,'Popov', 'Olga', 'opopov', 8500),
(127, 'Chen', 'Ling', 'lcheng', 14500),
(128, 'Dunn', 'David', 'ddunn', NULL);