Skip to content

Commit

Permalink
docs: separate query statement and result in two text boxes. (#6204) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Defined2014 authored Aug 23, 2021
1 parent 65eef63 commit 7a1b15f
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 @@ -236,11 +236,15 @@ To query a specific column, add the column name after the `SELECT` keyword:

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

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

Use the `WHERE` clause to filter all records that match the conditions and then return the result:
Expand Down

0 comments on commit 7a1b15f

Please sign in to comment.