通过终端创建表时出现SQL语法错误

时间:2019-07-10 08:57:01

标签: mysql terminal create-table

我正在尝试在终端上的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行的''附近使用的语法

0 个答案:

没有答案