Skip to content

Commit

Permalink
basic SQL operations: separate query statement and result in two text… (
Browse files Browse the repository at this point in the history
  • Loading branch information
en-jin19 authored Aug 23, 2021
1 parent 56f38c7 commit f9d9726
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions basic-sql-operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,15 @@ SELECT * FROM person;

```sql
SELECT name FROM person;
```

```sql
+------+
| name |
+------+
| tom |
+------+
1 rows in set (0.00 sec)
```

使用 WHERE 子句,对所有记录进行是否符合条件的筛选后再返回。例如:
Expand Down

0 comments on commit f9d9726

Please sign in to comment.