我在 oracle sql 中收到 "missing keyword" 错误
I am getting "missing keyword" error in oracle sql
我是 SQL 的新手,我正在尝试为行程项目创建 table,但是不断收到相同的错误消息,提示我“缺少关键字”。我试过查找问题所在,但我找不到任何东西
如果您对此有任何解决方案或设计建议,我们将不胜感激!
create table itinerary_item
( tour_id varchar(8)
, location_id varchar(8)
, order_visited_number varchar(8)
, primary key (tour_id, location_id)
, foreign key (tour_id) references tour(tour_id)
, foreign key (location_id) location(location_id)
);
您好,请在您的 sql table 创建脚本的最后一行使用引用关键字!!!
我是 SQL 的新手,我正在尝试为行程项目创建 table,但是不断收到相同的错误消息,提示我“缺少关键字”。我试过查找问题所在,但我找不到任何东西
如果您对此有任何解决方案或设计建议,我们将不胜感激!
create table itinerary_item
( tour_id varchar(8)
, location_id varchar(8)
, order_visited_number varchar(8)
, primary key (tour_id, location_id)
, foreign key (tour_id) references tour(tour_id)
, foreign key (location_id) location(location_id)
);
您好,请在您的 sql table 创建脚本的最后一行使用引用关键字!!!