description Use ALTER TABLE column_definition syntax to specify the properties of a column that are added to a table. The data type for the column that is added and the schema to which it belongs.
ALTER TABLE `studentcourses` ADD FOREIGN KEY (StudentId) REFERENCES students(id); ALTER TABLE `studentcourses` ADD FOREIGN KEY (CourseId) REFERENCES courses(id); ...