Hibernate复合主键作外键该怎么样配置
答案:1 悬赏:50 手机版
解决时间 2021-01-03 19:50
- 提问者网友:川水往事
- 2021-01-02 22:30
Hibernate复合主键作外键该怎么样配置
最佳答案
- 五星知识达人网友:何以畏孤独
- 2021-01-02 23:39
drop database choose ; create database choose ; use choose; --student create table student( sId char(10) not null primary key, sName char(20) not null, sPwd char(20) not null );
create unique index PK_student on student(sId); --course create table course( coId char(10) not null primary key, coName char(20) not null, credit float(53) not null );
create unique index PK_course on course(coId); --chooseCourse create table chooseCourse( coId char(10) not null, sId char(10) not null, grade float(53), primary key(coId,sId), foreign key (coId) references course(coId), foreign key (sId) references student(sId) );
create unique index PK_student on student(sId); --course create table course( coId char(10) not null primary key, coName char(20) not null, credit float(53) not null );
create unique index PK_course on course(coId); --chooseCourse create table chooseCourse( coId char(10) not null, sId char(10) not null, grade float(53), primary key(coId,sId), foreign key (coId) references course(coId), foreign key (sId) references student(sId) );
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯