From 5335a1c63a093c1258ab74613cda0c7f0bc284ff Mon Sep 17 00:00:00 2001 From: DaisyLRao Date: Fri, 13 Aug 2021 08:52:56 +0000 Subject: [PATCH 1/2] update SQLBase_Lesson3/readme_part1.md. --- SQLBase_Lesson3/readme_part1.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/SQLBase_Lesson3/readme_part1.md b/SQLBase_Lesson3/readme_part1.md index cccf262..deea8ca 100644 --- a/SQLBase_Lesson3/readme_part1.md +++ b/SQLBase_Lesson3/readme_part1.md @@ -2,9 +2,10 @@ 在关系数据库中,一张表中的每一行数据被称为一条记录。一条记录就是由多个字段组成的。例如,students表的两行记录: -id class_id name gender score -1 1 小明 M 90 -2 1 小红 F 95 +| id | class_id | name | gender | score | +|----|----------|------|--------|-------| +| 1 | 1 | 小明 | M | 90 | +| 2 | 1 | 小红 | F | 95 | 每一条记录都包含若干定义好的字段。同一个表的所有记录都有相同的字段定义。 -- Gitee From dc36a3a07fadb59c6b7f6da84790f5bf1b032c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=9D=B0=E6=96=8C?= <303410541@qq.com> Date: Wed, 20 Oct 2021 10:09:16 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E6=8F=90=E4=BA=A4PR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..e69de29 -- Gitee