Skip to content

Commit a448570

Browse files
committed
更新了部分文档
1 parent 08bc838 commit a448570

File tree

3 files changed

+95
-80
lines changed

3 files changed

+95
-80
lines changed

Day21-30/21-30.Web前端概述.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
> **说明**:本文使用的部分插图来自*Jon Duckett*先生的*[HTML and CSS: Design and Build Websites](https://www.amazon.cn/dp/1118008189/ref=sr_1_5?__mk_zh_CN=%E4%BA%9A%E9%A9%AC%E9%80%8A%E7%BD%91%E7%AB%99&keywords=html+%26+css&qid=1554609325&s=gateway&sr=8-5)*一书,这是一本非常棒的前端入门书,有兴趣的读者可以在亚马逊或者其他网站上找到该书的购买链接。
44
5+
HTML 是用来描述网页的一种语言,全称是 Hyper-Text Markup Language,即超文本标记语言。我们浏览网页时看到的文字、按钮、图片、视频等元素,它们都是通过 HTML 书写并通过浏览器来呈现的。
6+
57
### HTML简史
68

79
1. 1991年10月:一个非正式CERN([欧洲核子研究中心](https://zh.wikipedia.org/wiki/%E6%AD%90%E6%B4%B2%E6%A0%B8%E5%AD%90%E7%A0%94%E7%A9%B6%E7%B5%84%E7%B9%94))文件首次公开18个HTML标签,这个文件的作者是物理学家[蒂姆·伯纳斯-李](https://zh.wikipedia.org/wiki/%E8%92%82%E5%A7%86%C2%B7%E4%BC%AF%E7%BA%B3%E6%96%AF-%E6%9D%8E),因此他是[万维网](https://zh.wikipedia.org/wiki/%E4%B8%87%E7%BB%B4%E7%BD%91)的发明者,也是[万维网联盟](https://zh.wikipedia.org/wiki/%E4%B8%87%E7%BB%B4%E7%BD%91%E8%81%94%E7%9B%9F)的主席。
@@ -25,6 +27,10 @@
2527

2628
### 使用标签承载内容
2729

30+
<img src="https://gitee.com/jackfrued/mypic/raw/master/20211107163448.png" style="zoom:35%">
31+
32+
<img src="https://gitee.com/jackfrued/mypic/raw/master/20211107163741.png" style="zoom:75%">
33+
2834
#### 结构
2935

3036
- html
@@ -93,11 +99,11 @@
9399

94100
- 重要属性 - action / method / enctype
95101
- 表单控件(input)- type属性
96-
- 文本框 - text / 密码框 - password / 数字框 - number
97-
- 邮箱 - email / 电话 - tel / 日期 - date / 滑条 - range / URL - url / 搜索 - search
98-
- 单选按钮 - radio / 复选按钮 - checkbox
99-
- 文件上传 - file / 隐藏域 - hidden
100-
- 提交按钮 - submit / 图像按钮 - image / 重置按钮 - reset
102+
- 文本框 - `text` / 密码框 - `password` / 数字框 - `number`
103+
- 邮箱 - `email` / 电话 - `tel` / 日期 - `date` / 滑条 - `range` / URL - `url` / 搜索 - `search`
104+
- 单选按钮 - `radio` / 复选按钮 - `checkbox`
105+
- 文件上传 - `file` / 隐藏域 - `hidden`
106+
- 提交按钮 - `submit` / 图像按钮 - `image` / 重置按钮 - `reset`
101107
- 下拉列表 - select / option
102108
- 文本域(多行文本)- textarea
103109
- 组合表单元素 - fieldset / legend
@@ -259,7 +265,7 @@
259265
- 赋值运算符
260266
- 算术运算符
261267
- 比较运算符
262-
- 逻辑运算符
268+
- 逻辑运算符`&&``||``!`
263269
- 分支结构
264270
- `if...else...`
265271
- `switch...cas...default...`

Day36-40/code/HRS_create_and_init.sql

+27-25
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,43 @@
1-
drop database if exists hrs;
2-
create database hrs default charset utf8mb4;
1+
-- 创建名为hrs的数据库
2+
drop database if exists `hrs`;
3+
create database `hrs` default charset utf8mb4;
34

4-
use hrs;
5+
-- 切换到hrs数据库
6+
use `hrs`;
57

6-
create table tb_dept
8+
-- 创建部门表
9+
create table `tb_dept`
710
(
8-
dno int not null comment '编号',
9-
dname varchar(10) not null comment '名称',
10-
dloc varchar(20) not null comment '所在地',
11+
`dno` int not null comment '编号',
12+
`dname` varchar(10) not null comment '名称',
13+
`dloc` varchar(20) not null comment '所在地',
1114
primary key (dno)
1215
);
1316

14-
insert into tb_dept values
17+
-- 插入4个部门
18+
insert into `tb_dept` values
1519
(10, '会计部', '北京'),
1620
(20, '研发部', '成都'),
1721
(30, '销售部', '重庆'),
1822
(40, '运维部', '深圳');
1923

20-
create table tb_emp
24+
-- 创建员工表
25+
create table `tb_emp`
2126
(
22-
eno int not null comment '员工编号',
23-
ename varchar(20) not null comment '员工姓名',
24-
job varchar(20) not null comment '员工职位',
25-
mgr int comment '主管编号',
26-
sal int not null comment '员工月薪',
27-
comm int comment '每月补贴',
28-
dno int comment '所在部门编号'
27+
`eno` int not null comment '员工编号',
28+
`ename` varchar(20) not null comment '员工姓名',
29+
`job` varchar(20) not null comment '员工职位',
30+
`mgr` int comment '主管编号',
31+
`sal` int not null comment '员工月薪',
32+
`comm` int comment '每月补贴',
33+
`dno` int comment '所在部门编号',
34+
primary key (eno),
35+
constraint `fk_emp_mgr` foreign key (`mgr`) references tb_emp (`eno`),
36+
constraint `fk_emp_dno` foreign key (`dno`) references tb_dept (`dno`)
2937
);
3038

31-
alter table tb_emp add constraint pk_emp_eno primary key (eno);
32-
-- alter table tb_emp add constraint uk_emp_ename unique (ename);
33-
-- alter table tb_emp add constraint fk_emp_mgr foreign key (mgr) references tb_emp (eno);
34-
-- alter table tb_emp add constraint fk_emp_dno foreign key (dno) references tb_dept (dno);
35-
36-
insert into tb_emp values
39+
-- 插入14个员工
40+
insert into `tb_emp` values
3741
(7800, '张三丰', '总裁', null, 9000, 1200, 20),
3842
(2056, '乔峰', '分析师', 7800, 5000, 1500, 20),
3943
(3088, '李莫愁', '设计师', 2056, 3500, 800, 20),
@@ -52,14 +56,12 @@ insert into tb_emp values
5256

5357
-- 查询月薪最高的员工姓名和月薪
5458

55-
-- 查询员工的姓名和年薪((月薪+补贴)*13)
59+
-- 查询员工的姓名和年薪(年薪=(sal+comm)*13)
5660

5761
-- 查询有员工的部门的编号和人数
5862

5963
-- 查询所有部门的名称和人数
6064

61-
-- 查询月薪最高的员工(Boss除外)的姓名和月薪
62-
6365
-- 查询月薪超过平均月薪的员工的姓名和月薪
6466

6567
-- 查询月薪超过其所在部门平均月薪的员工的姓名、部门编号和月薪

0 commit comments

Comments
 (0)