0
Is giving this error qdo try to add data in table - 00928. 00000 - "Missing SELECT keyword
INSERT INTO DEPT
(
DEPTNO, DNAME, LOC)
VALUES
(10, 'ACCOUNTING', 'NEW YORK');
(20, 'RESEARCH', 'DALLAS');
(30, 'SALES', 'CHICAGO');
(40, 'OPERATIONS', 'BOSTON');
use
,
to separate the list of values and not;
– Ricardo Pontual
Thanks Ricardo, thanks for the help....
– Celso L. Oliveira