加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SQL3.18作业.sql 968 Bytes
一键复制 编辑 原始数据 按行查看 历史
buqidai 提交于 2021-03-18 17:08 . sql3.18作z
create database Class
create table class (
ClassId int primary key identity(1,1) not null ,
ClassName nvarchar(50) not null,);
create table student (
ClassId int primary key identity(1,1) not null ,
ClassName nvarchar(50) not null,
StudentSex nvarchar(50) not null default '3',
StudentBirth date,
StudentAddress nvarchar(255) not null default ' ',
ClassId2 int not null,);
create table Course (
CourseId int primary key identity(1,1) not null ,
CourseName nvarchar(50) not null ,
CourseCredit tinyint not null default '0',)
create table ClassCourse (
ClassCourseId int primary key identity(1,1) not null ,
ClassId int not null,
CourseId int not null,)
create table Score (
ScoreId int primary key identity(1,1) not null ,
StudentId int not null,
CourseId int not null,
Score int not null,)
alter table Student add StudentIdentityCard varchar(20) not null default ' ';
alter table Score add IsResit tinyint not null default '0 ';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化