MySQL Error 1215: Cannot add foreign key constraint

前端 未结 30 3214
予麋鹿
予麋鹿 2020-11-22 01:37

I am trying to forward engineer my new schema onto my db server, but I can\'t figure out why I am getting this error. I\'ve tried to search for the answer here, but everyth

30条回答
  •  悲哀的现实
    2020-11-22 02:16

    i had the same issue, my solution:

    Before:

    CREATE TABLE EMPRES
    ( NoFilm smallint NOT NULL
    
      PRIMARY KEY (NoFilm)
    
      FOREIGN KEY (NoFilm) REFERENCES cassettes
    
    );
    

    Solution:

    CREATE TABLE EMPRES
    (NoFilm smallint NOT NULL REFERENCES cassettes,
    
     PRIMARY KEY (NoFilm)
    
    );
    

    I hope it's help ;)

提交回复
热议问题