Inserting data into Oracle database Inserting data into Oracle database oracle oracle

Inserting data into Oracle database


Try the following statement:

INSERT INTO Estadio (nombreEstadio, inauguracion, capacidad) VALUES ('Camp Nou', 1957, 99354);

It's a best practice to specify the order of the columns for INSERT INTO statement.