From f9d9726458afdbd9d7fe2220d64f38905d869e72 Mon Sep 17 00:00:00 2001 From: Enwei Date: Mon, 23 Aug 2021 10:50:04 +0200 Subject: [PATCH] =?UTF-8?q?basic=20SQL=20operations:=20separate=20query=20?= =?UTF-8?q?statement=20and=20result=20in=20two=20text=E2=80=A6=20(#6913)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- basic-sql-operations.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/basic-sql-operations.md b/basic-sql-operations.md index b8fa3c19f351..9d3fb252ca91 100644 --- a/basic-sql-operations.md +++ b/basic-sql-operations.md @@ -229,11 +229,15 @@ SELECT * FROM person; ```sql SELECT name FROM person; +``` + +```sql +------+ | name | +------+ | tom | +------+ +1 rows in set (0.00 sec) ``` 使用 WHERE 子句,对所有记录进行是否符合条件的筛选后再返回。例如: