I have an existing table:
CREAT TABLE Course
(CourseNo int NOT NULL PRIMARY KEY,
CourseName varchar NOT NULL
StudentNo int NOT NULL REFERENCES Student (StudentNo))
Is it possible to code the following change in T-SQL:
Introduce a new column called CourseID (int NOT NULL) and make it the PK? In other words, remove CourseNo from being the PK and make CourseID the new PK without dropping the column CourseNo?
Let's just put aside the business case for this change and assume it to be a theoretical pursuit.