【中字】SQL进阶教程 | 史上最易懂SQL教程!10小时零基础成长SQL大师!!

259.6万
2.3万
2020-03-04 02:58:26
正在缓冲...
4.3万
4.3万
15.6万
2.8万
· 本SQL进阶教程系列为'CodeWithMosh'全套10小时教程的全套付费内容,共15章,其中进阶付费部分时长7小时。 · 2020.03 - 2021.05.16,历时1年多,终于翻译完成。对于耐心等待和不断催更的小伙伴,谢谢你们,同时感到非常抱歉,我也不知道我这么能拖。。。 · CodeWithMosh是目前市面上能找到的逻辑最清晰,最简单易懂的SQL教程。尤其对初学者而言,直接入手这个版本能塑造良好的SQL编写思维和逻辑能力。看不懂就多看几遍嗷!
视频选集
(1/155)
自动连播
【第一章】1- 介绍 | Introduction「做好准备」
00:19
2- 什么是SQL | What is SQL
03:25
3- MySQL Mac系统安装 | Installing MySQL on Mac
04:59
4- MySQL Windows系统安装 | Installing MySQL on Windows
05:21
5- 创建数据库 | Creating the Databases
08:33
6- 你会学到什么 | What You'll learn
02:32
【第二章】1- 选择语句 | The SELECT Statement「在单一表格中检索数据」
05:51
2- 选择子句 | The SELECT Clause
08:49
3- WHERE子句 | The WHERE Clause
05:18
4- AND, OR, NOT运算符 | The AND, OR and NOT Operators
06:53
5- IN运算符 | The IN Operator
03:04
6- BETWEEN运算符 | The BETWEEN Operator
02:13
7- LIKE运算符 | The LIKE Operator
05:38
8- REGEXP运算符 | The REGEXP Operator
09:22
9- IS NULL运算符 | The IS NULL Operator
02:27
10- ORDER BY子句 | The ORDER BY Clause
07:07
11- LIMIT子句 | The LIMIT Clause
03:27
【第三章】1- 内连接 | Inner Joins「在多张表格中检索数据」
08:28
2- 跨数据库连接 | Joining Across Databases
02:48
3- 自连接 | Self Joins
04:14
4- 多表连接 | Joining Multiple Tables
06:47
5- 复合连接条件 | Compound Join Conditions
03:42
6- 隐式连接语法 | Implicit Join Syntax
02:21
7- 外连接 | Outer Joins
06:28
8- 多表外连接 | Outer Join Between Multiple Tables
06:20
9- 自外连接 | Self Outer Joins
02:13
10- USING子句 | The USING Clause
05:24
11- 自然连接 | Natural Joins
01:22
12- 交叉连接 | Cross Joins
03:15
13- 联合 | Unions
08:30
【第四章】1- 列属性 | Column Attributes「插入, 更新和删除数据」
03:26
2- 插入单行 | Inserting a Row
05:47
3- 插入多行 | Inserting Multiple Rows
03:19
4- 插入分层行 | Inserting Hierarchical Rows
05:54
5- 创建表复制 | Creating a Copy of a Table
08:48
6- 更新单行 | Updating a Single Row
03:56
7- 更新多行 | Updating Multiple Rows
03:15
8- 在Updates中用子查询 | Using Subqueries in Updates
05:38
9- 删除行 | Deleting Rows
01:25
10- 恢复数据库 | Restoring the Databases
01:07
【第五章】1- 聚合函数 | Aggregate Functions「汇总数据」
09:20
2- GROUP BY子句 | The GROUP BY Clause
07:22
3- HAVING子句 | The HAVING Clause
08:51
4- ROLLUP运算符 | The ROLLUP Operator
05:06
【第六章】1- 介绍 | Introduction「编写复杂查询」
01:29
2- 子查询 | Subqueries
02:30
3- IN运算符 | The IN Operator
03:40
4- 子查询 vs 连接 | Subqueries vs Joins
05:08
5- ALL关键字 | The ALL Keyword
04:53
6- ANY关键字 | The ANY Keyword
02:37
7- 相关子查询 | Correlated Subqueries
05:38
8- EXISTS运算符 | The EXISTS Operator
05:40
9- SELECT子句中的子查询 | Subqueries in the SELECT Clause
04:30
10- FROM子句中的子查询 | Subqueries in the FROM Clause
02:59
【第七章】1- 数值函数 | Numeric Functions「MySQL的基本函数」
02:55
2- 字符串函数 | String Functions
05:48
3- MySQL中的日期函数 | Date Functions in MySQL
04:09
4- 格式化日期和时间 | Formatting Dates and Times
02:15
5- 计算日期和时间 | Calculating Dates and Times
03:09
6- IFNULL和COALESCE函数 | The IFNULL and COALESCE Functions
03:30
7- IF函数 | The IF Function
04:55
8- CASE运算符The CASE Operator
05:24
【第八章】1- 创建视图 | Creating Views「视图」
05:37
2- 更改或删除视图 | Altering or Dropping Views
02:53
3- 可更新视图 | Updatable Views
05:13
4- WITH OPTION CHECK子句 | THE WITH OPTION CHECK Clause
02:19
5- 视图的其他优点 | Other Benefits of Views
02:38
【第九章】1- 什么是存储过程 | What are Stored Procedures「存储过程」
02:19
2- 创建一个存储过程 | Creating a Stored Procedure
05:35
3- 使用MySQL工作台创建存储过程 | Creating Procedures Using MySQLWorkbench
01:22
4- 删除存储过程 | Dropping Stored Procedures
02:10
5- 参数 | Parameters
05:27
6- 带默认值的参数 | Parameters with Default Value
08:19
7- 参数验证 | Parameter Validation
06:41
8- 输出参数 | Output Parameters
03:56
9- 变量 | Variables
04:35
10- 函数 | Functions
06:29
11- 其他约定 | Other Conventions
01:53
【第十章】1- 触发器 | Triggers「触发器和事件」
07:32
2- 查看触发器 | Viewing Triggers
01:21
3- 删除触发器 | Dropping Triggers
00:53
4- 使用触发器进行审计 | sing Triggers for Auditing
04:53
5- 事件 | Events
04:34
6- 查看, 删除和更改事件 | Viewing, Dropping and Altering Events
02:05
【十一章】1- 事务 | Transactions「事务和并发」
02:45
2- 创建事务 | Creating Transactions
05:12
3- 并发和锁定 | Concurrency and Locking
04:08
4- 并发问题 | Concurrency Problems
07:26
5- 事务隔离级别 | Transaction Isolation Levels
05:44
6- 读未提交隔离级别 | READ UNCOMMITTED Isolation Level
03:28
7- 读已提交隔离级别 | READ COMMITTED Isolation Level
03:02
8- 可重复读隔离级别 | REPEATABLE READ Isolation Level
03:31
9- 序列化隔离级别 | SERIALIZABLE Isolation Level
02:19
10- 死锁 | Deadlocks
06:12
【十二章】1- 介绍 | Introduction「数据类型」
00:44
2- 字符串类型 | String Types
02:26
3- 整数类型 | Integer Types
02:53
4- 定点数类型和浮点数类型 | Fixed-point and Floating-point Types
01:43
5- 布尔类型 | Boolean Types
00:47
6- 枚举和集合类型 | Enum and Set Types
03:37
7- 日期和时间类型 | Date and Time Types
00:45
8- Blob类型 | Blob Types
01:18
9- JSON类型 | JSON Type
10:25
【十三章】1- 介绍 | Introduction「设计数据库」
01:26
2- 数据建模 | Data Modelling
02:27
3- 概念模型 | Conceptual Models
04:35
4- 逻辑模型 | Logical Models
07:25
5- 实体模型 | Physical Models
06:29
6- 主键 | Primary Keys
03:24
7- 外键 | Foreign Keys
05:49
8- 外键约束 | Foreign Key Constraints
05:23
9- 标准化 | Normalization
01:25
10- 第一范式 | 1NF- First Normal Form
02:43
11- 链接表 | Link Tables
04:02
12- 第二范式 | 2NF- Second Normal Form
06:34
13- 第三范式 | 3NF- Third Normal Form
01:45
14- 我的实用建议 | My Pragmatic Advice
02:56
15- 不要对什么都建模 | Don't Model the Universe
04:25
16- 模型的正向工程 | Forward Engineering a Model
02:36
17- 数据库同步模型 | Synchronizing a Model with a Database
04:50
18- 模型的逆向工程 | Reverse Engineering a Database
03:12
19- 项目:航班订票系统 | Project- Flight Booking System
00:24
20- 解答:概念模型 | Solution- Conceptual Model
08:00
21- 解答:逻辑模型 | Solution- Logical Model
09:03
22- 项目:视频租赁应用 | Project - Video Rental Application
01:05
23- 解答:概念模型 | Solution- Conceptual Model
07:01
24- 解答:逻辑模型 | Solution- Logical Model
08:30
25- 创建和删除数据库 | Creating and Dropping Databases
01:42
26- 创建表 | Creating Tables
03:14
27- 更改表 | Altering Tables
02:57
28- 创建关系 | Creating Relationships
04:48
29- 更改主键和外键约束 | Altering Primary and Foreign Key Constraints
02:12
30- 字符集和排序规则 | Character Sets and Collations
06:30
31- 存储引擎 | Storage Engines
02:28
【十四章】1- 介绍 | Introduction「高效的索引」
00:42
2- 索引 | Indexes
02:50
3- 创建索引 | Creating Indexes
05:02
4- 查看索引 | Viewing Indexes
03:20
5- 前缀索引 | Prefix Indexes
03:41
6- 全文索引 | Full-text Indexes
07:51
7- 复合索引 | Composite Indexes
05:13
8- 复合索引中的列顺序 | Order of Columns in Composite Indexes
09:18
9- 当索引无效时 | When Indexes are Ignored
05:04
10- 使用索引排序 | Using Indexes for Sorting
07:03
11- 覆盖索引 | Covering Indexes
01:59
12- 维护索引 | Index Maintenance
01:26
【十五章】1- 介绍 | Introduction「保护数据库」
00:34
2- 创建一个用户 | Creating a User
03:14
3- 查看用户 | Viewing Users
01:31
4- 删除用户 | Dropping Users
00:49
5- 修改密码 | Changing Passwords
01:07
6- 授予权限 | Granting Privileges
04:54
7- 查看权限 | Viewing Privileges
01:35
8- 撤销权限 | Revoking Privileges
01:21
9- 总结 | Wrap Up
00:45
客服
顶部
赛事库 课堂 2021拜年纪