typo mistake

This commit is contained in:
Ruhul Amin Parvez
2021-03-14 00:22:45 +06:00
committed by GitHub
parent c8dcfa1a68
commit 2ac47e71e6

View File

@@ -15,7 +15,7 @@ It is a highly stable database management system, backend by more than 20 years
```
SELECT c1, c2 FROM t;
```
Query data in columns c1, c2 form a table
Query data in columns c1, c2 from a table
<hr>
```
@@ -142,7 +142,7 @@ FROM t1
UNION [ALL]
SELECT c1, c2 FROM t2;
```
Combine rows from tow queries
Combine rows from two queries
<hr>
```