I'm starting to model a database. I started with a table first (later I could add more elements) but when entering the code to SQL Developer, this error appears:
Informe de error -
ORA-00905: missing keyword
00905. 00000 - "missing keyword"
*Cause:
*Action:
The table has this code:
CREATE TABLE MULTI_TBL_TD (
idTd DOUBLE NOT NULL,
nomTienda VARCHAR(200) NOT NULL,
modTienda LONGVARCHAR NOT NULL,
stkTienda LONGVARCHAR NOT NULL,
CONSTRAINT MULTI_TBL_TD_PK PRIMARY KEY (idTd)
)
The SQL developer software tells me that the error "starts at line: 2 of the command:".
What could I be doing wrong?