Hibernate复合主键作外键该怎么样配置
1个回答
展开全部
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) );
莱伯泰科
2024-10-28 广告
2024-10-28 广告
LabTech Group,即北京莱伯泰科仪器股份有限公司,是业界领先的实验室科学仪器与解决方案提供商。我们专注于分析测试仪器的研发、生产和销售,致力于为全球科研工作者、高校及企业实验室提供高性能、高稳定性的产品与服务。通过持续的技术创新与...
点击进入详情页
本回答由莱伯泰科提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询