From 2ac47e71e65a2ad4357f8198f9768b88d218e5c0 Mon Sep 17 00:00:00 2001 From: Ruhul Amin Parvez Date: Sun, 14 Mar 2021 00:22:45 +0600 Subject: [PATCH] typo mistake --- databases/postgresql.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/databases/postgresql.md b/databases/postgresql.md index ec11061..58953f4 100644 --- a/databases/postgresql.md +++ b/databases/postgresql.md @@ -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
``` @@ -142,7 +142,7 @@ FROM t1 UNION [ALL] SELECT c1, c2 FROM t2; ``` -Combine rows from tow queries +Combine rows from two queries
```