Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Fremdschlüsselbeschränkung MySql kann nicht hinzugefügt werden

Aktualisieren Sie Ihre entries Tabelle wie folgt:

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)
)