From c315481b0ffd5cece3d2400edcb0183a5642cda8 Mon Sep 17 00:00:00 2001 From: Ruhul Amin Parvez Date: Fri, 12 Mar 2021 18:28:24 +0600 Subject: [PATCH] Update postgresql.md --- databases/postgresql.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/databases/postgresql.md b/databases/postgresql.md index f631d5f..deb3703 100644 --- a/databases/postgresql.md +++ b/databases/postgresql.md @@ -1,21 +1,21 @@ -## PostgreSQL CHEAT SHEET +## ❄ PostgreSQL CHEAT SHEET -### What is PostgreSQL? +### 🧐 What is PostgreSQL? `PostgreSQL/Postgres` is a free open-source relational database management system(RDBMS) emphasizing extensibility and SQL compliance. It was originally named `POSTGRES`, referring to it's origins as a successor to the Ingres database developed at the University of California, Berkeley. -### What is the use of PostgreSQL? +### 🤔 What is the use of PostgreSQL? It is a highly stable database management system, backend by more than 20 years of community development which has contributed to it's high levels of resilience, integrity, and correctness. PostgreSQL is used as the primary data store or data warehouse for many web, mobile, geospatial, and analytics applications. ## 📚 PostgreSQL Table of Contents -### QUERYING DATA FROM A TABLE +### 1️⃣ QUERYING DATA FROM A TABLE
View Queries ``` SELECT c1, c2 FROM t; ``` -#### Query data in columns c1, c2 form a table +Query data in columns c1, c2 form a table
``` @@ -492,4 +492,4 @@ DROP TRIGGER trigger_name - SUM - returns the total of a list - MAX - returns the maximum value in a list - MIN - returns the minimum value in a list -
\ No newline at end of file +