CREATE table flight_details(
flight_id char(10),
flight_date date,
flight_time time,
flight_place varchar2(50),
tp_id char(8),
primary key (flight_id),
foreign key (tp_id) references travel_package(tp_id));
當我執行此 這個錯誤出現無效的數據類型
flight_time time, * ERROR at line 4: ORA-00902: invalid datatype
如何解決這個問題?的
_line 4_包含什麼? – Melebius
Oracle RDBMS沒有'time' [數據類型](http://docs.oracle.com/cd/E11882_01/server.112/e10592/sql_elements001.htm)。爲什麼要將日期和時間存儲在單獨的列中? –
Oracle中沒有時間數據類型。請考慮將flight_date和flight_time合併到一個日期列中。 –