Respuesta :
Answer:
Course_ID should be the primary key
Explanation:
In databases, the primary key of a table must be a field that identifies uniquely every record possible in that table. Most common way is to assign a number starting from 1 and incrementing every new record is added to the table.
Since primary keys cannot be duplicated, the fields Course_Name, Semester and Credits, are not good choices.
The syntax for adding a primary key is:
ALTER TABLE Course_Details ADD PRIMARY KEY (Course_ID);