1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-08-01 16:28:03 +08:00

小小的文字修改

更新的括号里面觉得改为修改会不会好一点
This commit is contained in:
yuezang3 2022-08-06 17:27:31 +08:00 committed by GitHub
parent 15e3bd3124
commit 386cfe7592
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ MySQL 没有命中缓存,那么就会进入分析器,分析器主要是用
### 2.1 查询语句 ### 2.1 查询语句
说了以上这么多,那么究竟一条 SQL 语句是如何执行的呢?其实我们的 SQL 可以分为两种,一种是查询,一种是更新(增加,更新,删除)。我们先分析下查询语句,语句如下: 说了以上这么多,那么究竟一条 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=' 张三 ';