From 22f80f461abe8947161c98b8d45208a2c119d4fd Mon Sep 17 00:00:00 2001 From: Ashwani Kumar <38505724+ashwanimehra@users.noreply.github.com> Date: Mon, 17 Dec 2018 06:12:15 +0530 Subject: [PATCH] Added information text (#25272) * Added information text added informative text in line 34-35 * Removed caps, added code formatting --- guide/english/sql/sql-select-statement/index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/guide/english/sql/sql-select-statement/index.md b/guide/english/sql/sql-select-statement/index.md index 77b521b62c..003878d988 100644 --- a/guide/english/sql/sql-select-statement/index.md +++ b/guide/english/sql/sql-select-statement/index.md @@ -2,7 +2,7 @@ title: SQL Select Statement --- -## SQL Select Statement +# SQL Select Statement ## Select and From clauses @@ -31,6 +31,10 @@ from student; +-----------+-------------------+------------+------------------------+ 9 rows in set (0.00 sec) ``` +**NOTE**: You can also select all the data from the table using the `*` operator, like so: +```sql +SELECT * from +``` ## Select All Data in a table