I have the following the error in my sql program:
"ORA-00907: missing right parenthesis
- 00000 - "missing right parenthesis" and I have no idea where the bug is. This is my code:
DROP TABLE angajat;
CREATE TABLE angajat (
id int(11) PRIMARY KEY,
last_name varchar(64),
first_name varchar(64),
email varchar(64),
department varchar(64),
salary int(11) );