diff --git a/img/实验十五/image-20241204163120483.png b/img/实验十五/image-20241204163120483.png new file mode 100644 index 0000000..882147c Binary files /dev/null and b/img/实验十五/image-20241204163120483.png differ diff --git a/img/实验十五/image-20241204163257546.png b/img/实验十五/image-20241204163257546.png new file mode 100644 index 0000000..98ff396 Binary files /dev/null and b/img/实验十五/image-20241204163257546.png differ diff --git a/img/实验十五/image-20241204163305618.png b/img/实验十五/image-20241204163305618.png new file mode 100644 index 0000000..98ff396 Binary files /dev/null and b/img/实验十五/image-20241204163305618.png differ diff --git a/img/实验十五/image-20241204163319192.png b/img/实验十五/image-20241204163319192.png new file mode 100644 index 0000000..98ff396 Binary files /dev/null and b/img/实验十五/image-20241204163319192.png differ diff --git a/img/实验十五/image-20241204164336221.png b/img/实验十五/image-20241204164336221.png new file mode 100644 index 0000000..eaf93a0 Binary files /dev/null and b/img/实验十五/image-20241204164336221.png differ diff --git a/img/实验十五/image-20241204164409979.png b/img/实验十五/image-20241204164409979.png new file mode 100644 index 0000000..a94c229 Binary files /dev/null and b/img/实验十五/image-20241204164409979.png differ diff --git a/实验十五.md b/实验十五.md new file mode 100644 index 0000000..0153c1d --- /dev/null +++ b/实验十五.md @@ -0,0 +1,51 @@ +# 实验十五🧪 + +## 题目一 + +### 原题 + +利用向导为`学生管理`数据库生成一个`完全备份` + +### 分析 + +- 要求:备份 +- 备份类型:完全备份 + +### 实现 + +1. 打开SSMS,点击备份 + +image-20241204163120483 + +2. 选择完全备份 + + image-20241204163319192 + +3. 确定 + +## 题目二 + +### 原题 + +将`张三`同学的名字改为:`张兵`,然后`执行恢复`,将数据库恢复到修改“张三”同学姓名之前的状态 + +### 分析 + +- 任务:修改条目、执行恢复 +- 修改条目:`张三`->`张兵` + +### 实现 + +1. 修改`张三`的名字为`张兵` + + ```sql + UPDATE 学生表 + SET 姓名='张兵' + WHERE 姓名='张三'; + ``` + +2. 执行恢复 + + image-20241204164336221 + +image-20241204164409979 \ No newline at end of file