diff --git "a/41\347\216\213\347\222\220\347\222\220/.keep" "b/41\347\216\213\347\222\220\347\222\220/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/41\347\216\213\347\222\220\347\222\220/\345\276\256\344\277\241\345\233\276\347\211\207_20230217233253.jpg" "b/41\347\216\213\347\222\220\347\222\220/\345\276\256\344\277\241\345\233\276\347\211\207_20230217233253.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..9b334d0a0d093bdc436ec35d7346b84f768bd46c Binary files /dev/null and "b/41\347\216\213\347\222\220\347\222\220/\345\276\256\344\277\241\345\233\276\347\211\207_20230217233253.jpg" differ diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/.keep" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/5\345\274\240\345\233\276\347\211\207.docx" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/5\345\274\240\345\233\276\347\211\207.docx" new file mode 100644 index 0000000000000000000000000000000000000000..36763b640ad54dafa47c8cead34a969a395fbfaa Binary files /dev/null and "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/5\345\274\240\345\233\276\347\211\207.docx" differ diff --git "a/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232.sql" "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232.sql" new file mode 100644 index 0000000000000000000000000000000000000000..8b1ecf8ec4d67288c630f9e3063fbe96e13c71fb --- /dev/null +++ "b/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232/\347\254\254\344\270\211\346\254\241\344\275\234\344\270\232.sql" @@ -0,0 +1,38 @@ +create database chr; +use chr; +--1使用sql语句创建班级信息表Class,字段如下 +create table Class ( + ClassId int primary key identity(1,1), + ClassNmae nvarchar(50) +) +--2使用sql语句创建学生信息表Student,字段如下: +create table Student( + StudentId int primary key identity(1,1), + StudentName nvarchar(50) not null, + StudentSex tinyint not null default 3 , + StudentBirth date , + StudentAddress nvarchar(255) not null, + ClassId int not null +) +--3使用sql语句创建课程信息表Course,字段如下: +create table Course( + Courseld int primary key identity(1,1), + CourseName nvarchar(50) not null, + CourseCredit tinyint not null default 0 , +) +--4使用sql语句创建班级课程表ClassCourse,字段如下: +create table ClassCourse( + ClassCourseID int primary key identity(1,1), + ClassID int not null, + CourseID int not null +) +--5使用sql语句创建分数信息表Score,字段如下: +create table Score( + ScoreId int primary key identity(1,1), + StudentId int not null, + Courseld int not null, + Score int not null +) +drop table Student; +drop table ; +