I'm trying to add data into my SQL Database, and when I enter the following code:
INSERT INTO EMPLOYEES
VALUES('100','STEVEN','King','[email protected]','PSEUDO',
to_date('17-JAN-87','dd-mm-yy'),'AD_VP',24000,0.45,90);
I get the following error:
ERROR at line 1:
ORA-00001: unique constraint (ODEHat01.SYS_C00292486) Violated
I am not sure what I am doing wrong, because when I describe my table(desc employees;), it shows that I have 10 fields, and I am trying to enter data into ten fields. Any help would be very much appreciated so I can enter the data into my employees table. Thank you.