我正在尝试在终端上的mysql中创建表,但这有此错误。
mysql>
create table reservation (
id_reservation int AUTO_INCREMENT,
spectacle_id int,
restaurant_id int,
job_dating_id int,
users_id int,
PRIMARY KEY(id_reservation),
FOREIGN KEY(spectacle_id) REFERENCES spectacle(id_spectacle),
FOREIGN KEY(restaurant_id) REFERENCES restaurant(id_restaurant),
FOREIGN KEY(job_dating_id) REFERENCES job_dating(id_job_dating),
FOREIGN KEY(users_id) REFERENCES users(id_users)
;
错误1064(42000):您的SQL语法有错误;检查 与您的MySQL服务器版本相对应的手册 在第1行的''附近使用的语法