上传文件至 /

This commit is contained in:
2025-11-14 13:24:53 +08:00
parent 7b8fb537cb
commit 3e2c103361
5 changed files with 127 additions and 0 deletions

19
数据库5.1.md Normal file
View File

@@ -0,0 +1,19 @@
# 单表无条件查询
## 一、select语句的一般**格式**(重点)
```sql
SELECT ()
FROM
[WHERE ]
[GROUP BY ()]
[HAVING ()]
[ORDER BY ()]
[LIMIT (N个)];
```
# 二、单表无条件查询
```sql
select [all|distinct]
from
limit[,];
```