ST
2013-04-22 08:42:41 UTC
STUDENTID integer,
STUDENTNAME varchar2(25),
Constraint S_STUDENTID primary key (STUDENTID)
)
INSERT INTO STUDENT(STUDENTID, STUDENTNAME)
VALUES(38214, 'Letersky')
INSERT INTO STUDENT(STUDENTID, STUDENTNAME)
VALUES(54907, 'Altvater')
INSERT INTO STUDENT(STUDENTID, STUDENTNAME)
VALUES(66324, 'Aiken')
INSERT INTO STUDENT(STUDENTID, STUDENTNAME)
VALUES(70542, 'Marra');
I am creating this table in SQL and it keeps giving me errors. The last error I have to fix is this:
INSERT INTO STUDENT(STUDENTID, STUDENTNAME)
*
ERROR at line 6:
ORA-00922: missing or invalid option
I tried adding semicolons and editing the INSERT INTO lines but that didn't work.