注意看 constraint 是表示 它是个约束; primary key 表示是个主键约束 所以 constraint pk_course primary key (cno,tno)表示 course表上存在一个名字叫“pk_course”的主键约束 ,它的主键列是 cno,tno的组合列 下面那个同理 表示 SC表上存在一个名字叫“pk_sc”的主键约束 ,它的主键列是 ...
C alter table course add primary key ( cno ) D. D alter table course add primary key on cno相关知识点: 试题来源: 解析 A alter table course add constraint pk_cno primary key ( cno ); C alter table course add primary key ( cno )...