Added information text (#25272)

* Added information text

added informative text in line 34-35

* Removed caps, added code formatting
This commit is contained in:
Ashwani Kumar
2018-12-17 06:12:15 +05:30
committed by Manish Giri
parent 6657fa149a
commit 22f80f461a

View File

@ -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 <table_name>
```
## Select All Data in a table