2017-12-06 1 views

Antwort

6

double ist kein Typ in Oracle. Verwenden Sie double precision:

CREATE TABLE module (
    code_mod int NOT NULL, 
    intitule varchar2(255) NOT NULL, 
    charge_hor int NOT NULL, 
    coef double precision NOT NULL, 
    CONSTRAINT PK_module PRIMARY KEY(code_mod) 
); 

Here eine SQL Fiddle ist.