代码拉取完成,页面将自动刷新
create database STU087
go
use STU087
go
create table student087
(
Sno char(3) not null primary key ,--学号
Sname nchar(4) not null,--学生姓名
Ssex nchar(1) not null, --学生性别
Sbirthday date,--学生出生年月
Class char(5)--学生所在班级
)
go
create table teacher087--老师
(
Tno char(3) not null primary key ,--教工编号(主码)
Tname nchar(4) not null,--教工姓名
Tsex nchar(1) not null, --教工性别
Tbirthday date,--教工出生年月
Prof nchar(3),--职称
Depart nchar(5) not null--教工所在部门
)
go
create table Course087--课程
(
Cno char(5) not null primary key ,--课程号
Cname Nvarchar(25) not null,--课程名称
Tno char(3) not null references teacher087(Tno) --教工编号(外码)
)
go
create table Score087--分数
(
Sno char(3) not null references student087(Sno), --学号(外码)
Cno char(5) not null references Course087(Cno), --课程号(外码)
primary key(Sno,Cno),
Degree Decimal(4,1)--成绩
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。