SQL - Table Constraints
Given the table definition:
What will happen if you try to insert two rows with the same
CREATE TABLE Enrollment ( student_id INT, course_id INT, enrollment_date DATE, PRIMARY KEY (student_id, course_id) );
What will happen if you try to insert two rows with the same
student_id and course_id but different enrollment_date?