student_Id course_No result
20000101 1 78
20000101 2 86
20000101 3 87
20000101 4 67
20000102 1 89
20000102 2 67
上面的是表,如何将student_Id和course_No字段组合设为主键,我要SQL语句。
student_Id course_No result
20000101 1 78
20000101 2 86
20000101 3 87
20000101 4 67
20000102 1 89
20000102 2 67
上面的是表,如何将student_Id和course_No字段组合设为主键,我要SQL语句。
alter table 表名 add constraint 键名
primary key (student_Id,course_No)