1 Star 2 Fork 0

开架大飞机/数据库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
创建STU087及相关表.sql 889 Bytes
一键复制 编辑 原始数据 按行查看 历史
开架大飞机 提交于 2023-05-03 21:31 . 实验8
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)--成绩
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lrui2/database.git
git@gitee.com:lrui2/database.git
lrui2
database
数据库
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385