INSERT ALL
into instructor values (
835, 'SPARKS', 4000 , 200, 978, '16-12-1984')
into instructor values (
978, 'STEEL', 5000 , 250, 222, '16-01-1980')
and it was:
INSERT ALL
into instructor values (
835, 'SPARKS', 4000 , 200, 978, '16-DEC-1984')
into instructor values (
978, 'STEEL', 5000 , 250, 222, '16-JAN-1980')
The table EXISTS and SETUP CORRECTLY. Error message shows ORA-01843: not a valid month. Where did I do it wrong?
Thank you