创建联合主键

create table role(
user_id int not null,
role_id int not null,
primary key(user_id,role_id)
);

你可能感兴趣的:(mysql)