SQL - Table Constraints
Given this table:
Which of the following ALTER TABLE statements correctly adds a composite primary key on
CREATE TABLE ProjectAssignments ( project_id INT, employee_id INT, role VARCHAR(20), PRIMARY KEY (project_id, employee_id) );
Which of the following ALTER TABLE statements correctly adds a composite primary key on
project_id and employee_id?