In Oracle Application Express. I created a table named Employees. I want to insert multiple rows values by a single command . I used this command
INSERT INTO Employees
VALUES(
(100,'Steven','King','SKING','515.123.4567',TO_DATE('06-17-1987','MM- DD-YYYY'),'AD_PRESS',24000,NULL,NULL,90),
(101,'Neena','Kochar','NKOCHHAR','515.123.4568',TO_DATE('09-21-1989','MM-DD-YYYY'),'AD_VP',17000,NULL,100,90),
);
and I got ORA-00907: missing right parenthesis error . Where is my mistake ? Thnx in advance.