查了一下关于复合主键的用法:
比如:用户名和×××号,这两个绑定到一块具有唯一性,如果两个人名字和×××号一模一样,则第二个将添加不到数据库,会报错
 
1.主键语法
①创建时:create table sc (
    studentno    
int,
    courseid    
int,
    score    
int,
    
primary key (studentno) );
②修改时:ALTER TABLE table_name ADD CONSTRAINT pk_name PRIMARY KEY(列名);
前提是原先没有设置主键。
2.外键语法
①创建时:create table sc (
    studentno    
int,
    courseid    
int,
    score    
int,
    
foreign key (courseid) );
②修改时:
ALTER TABLE news_info[子表名]   ADD CONSTRAINT FK_news_info_news_type[约束名] FOREIGN KEY (info_id)[子表列] REFERENCES news_type[主表名] (id)[主表列] ;
3.使用组合主键
如果一列不能唯一区分一个表里的记录时,可以考虑多个列组合起来达到区分表记录的唯一性,形式
①创建时:create table sc (
    studentno    
int,
    courseid    
int,
    score    
int,
    
primary key (studentno,courseid) );
②修改时:alter table tb_name add primary key (字段1,字段2,字段3);