diff --git a/basic-sql-operations.md b/basic-sql-operations.md index 8cdf0169ca39d..4ee0bf60b8a4c 100644 --- a/basic-sql-operations.md +++ b/basic-sql-operations.md @@ -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: