create table role(
user_id int not null,
role_id int not null,
primary key(user_id,role_id)
);
创建联合主键
最新推荐文章于 2024-01-05 09:50:37 发布
create table role(
user_id int not null,
role_id int not null,
primary key(user_id,role_id)
);

被折叠的 条评论
为什么被折叠?