Mysql
 sql >> Database >  >> RDS >> Mysql

Impossibile aggiungere il vincolo di chiave esterna MySql

Aggiorna le tue entries tabella in questo modo:

CREATE TABLE IF NOT EXISTS entries(
entry_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
exam_date DATE NOT NULL,
student_id INT REFERENCES students(student_id),
subject_id INT REFERENCES subjects(subject_id),
PRIMARY KEY(entry_id)
)