SQL - Table Relationships
You have two tables from an ER diagram:
Student(id, name) and Enrollment(student_id, course_id). You want to add a foreign key constraint to Enrollment.student_id. Which SQL statement is correct?