Update postgresql.md

This commit is contained in:
Ruhul Amin Parvez
2021-03-12 18:28:24 +06:00
committed by GitHub
parent 4f4d2c1f7a
commit c315481b0f

View File

@@ -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
<details>
<summary>View Queries</summary>
```
SELECT c1, c2 FROM t;
```
#### Query data in columns c1, c2 form a table
Query data in columns c1, c2 form a table
<hr>
```
@@ -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
</details>
</details>