Oracle
 sql >> Database >  >> RDS >> Oracle

ORA-00907:parentesi a destra mancante (con esempi)

Non è necessario definire la lunghezza di int. Rimuovere il (10)

CREATE TABLE Orders (
order_id int NOT NULL,
order_date date NOT NULL,
total_value varchar(250) DEFAULT NULL,
order_status varchar(250) DEFAULT NULL,
payment_type_id int NOT NULL,
delivery_id int DEFAULT NULL,
store_id int NOT NULL,
staff_id int DEFAULT NULL,
client_id int NOT NULL,
sale_type_id int NOT NULL
);

DEMO SQL FIDDLE