I am facing the issue while creating the Table in SQL,
CREATE TABLE Worker 
(
    WORKER_ID INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
    FIRST_NAME CHAR(25),
    LAST_NAME CHAR(25),
    SALARY INT(15),
    JOINING_DATE DATETIME,
    DEPARTMENT CHAR(25)
);
Facing the Error
"ORA-00907: missing right parenthesis"
Can you please help with this. I have modified the query and re-run it various times still getting this error.
 
     
    