mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-25 04:38:51 -08:00
Update postgresql.md
This commit is contained in:
committed by
GitHub
parent
4f4d2c1f7a
commit
c315481b0f
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user