anonymous
2011-01-21 11:03:58 UTC
CREATE TABLE options
(Ocode CHAR(4) PRIMARY KEY,
Odesc VARCHAR2(48),
Ocost NUMBER(7,2)
Olist NUMBER(7,2));
It spits out the following:
(Ocode CHAR(4) PRIMARY KEY,
*
ERROR at line 2:
ORA-00922: missing or invalid option
What's the issue here?