1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

修正部分错别字

修正部分错别字
This commit is contained in:
木木匠 2019-03-31 18:24:36 +08:00 committed by GitHub
parent f1af0ca13d
commit d368dacb35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,7 +87,7 @@ MySQL 没有命中缓存,那么就会进入分析器,分析器主要是用
### 2.1 查询语句 ### 2.1 查询语句
说了以上这么多,那么究竟一条 sql 语句是如何执行的呢?其实我们的 sql 可以分为 2 中,一种是查询,一种是更新(增加,更新,删除)。我们先分析下查询语句,语句如下: 说了以上这么多,那么究竟一条 sql 语句是如何执行的呢?其实我们的 sql 可以分为两种,一种是查询,一种是更新(增加,更新,删除)。我们先分析下查询语句,语句如下:
```sql ```sql
select * from tb_student A where A.age='18' and A.name=' 张三 '; select * from tb_student A where A.age='18' and A.name=' 张三 ';