So, I am getting an error on Oracle Apex which says 'ORA-00933: SQL command not properly ended' . As far as I can see there is no syntax errors within my command, if I am missing something and somebody could help me out that would be great.
My command to create the table:
CREATE TABLE details
(
ssn INTEGER NOT NULL,
gender VARCHAR(255),
hair VARCHAR(255)
);
My command to add rows to the table :
INSERT INTO details(ssn, gender, hair)
VALUES
(112, 'male', 'blonde'),
(132, 'female', 'blonde'),
(882, 'male', 'brown'),
(542, 'female', 'black'),
(662, 'male', 'red') ;