-2
Create table A_15006977.vehicle. (
Vin varchar(20) primary key,
Vehicle_type char(20) not null,
Mileage number(20) not null,
Manufacturer char(20) not null
);
Insert all
Into A_15006977.vehicle(vin,vehicle_type,mileage,manufacturer)
values ('tf1bb2ve533093891','panel van',18 325,'man')
A_15006977.vehicle(vin,vehicle_type,mileage,manufacturer)
values
('tf1bb2ve533093822','standard van',79 885,'ford')
Select * from dual;
オラクルは、マイレージ値のスペースのためにカンマが必要だと考えています。スペースを削除すると、このエラーは消えます。また、create tableステートメントの中で、車両の後に点があるため、無効なテーブル名のエラーがあります。 –