- Postgresql Dba Command Cheat Sheet
- Postgresql Command Line Cheat Sheet
- Postgresql Cheat Sheet Commands
- Postgres Command Line
- Postgresql Cheat Sheet 9.5
- Postgresql Tutorial Pdf
Postgres SQL Injection Cheat Sheet Some useful syntax reminders for SQL Injection into PostgreSQL databases This post is part of a series of SQL Injection Cheat Sheets. In this series, I’ve endevoured to tabulate the data to make it easier to read and to use the same table for for each database backend. This section isn’t a full cheat sheet for psql. It covers the most common operations and shows them roughly in sequence, as you’d use them in a typical work session. Starting and quitting the psql interactive terminal Command-line prompts for psql.
- PostgreSQL Cheat Sheet PostgreSQL. Created on: 2019-01-22. Tag: cheatsheet. Check postgresql version. To check postgresql version.
- A helpful PostgreSQL cheat sheet is meant to help you reduce the time you spend on your daily coding projects. Make it an accessible reference of common SQL statements and other commands are at your fingertips. This way, you won’t have to wonder if the syntax is off the mark.
Introduction to the PostgreSQL cheat sheet
The PostgreSQL offers scaling, storage flexibility, and ease of database management for developers, DBAs, and other technical professionals. Because of PostgreSQL’s ability to offer architecture stability along with an extensive coding capability, the plethora of commands and statements are endless. That’s a good thing. What’s even better is having a handy list of the SQL commands you’re likely to use regularly. Well, some of the most popular ones are featured here in Part 2 of The PostgreSQL Cheat Sheet, so take a few moments to review it now.
Prerequisites to using PostgreSQL SQL commands in psql
Be sure that the object-relational database management systemPostgreSQL installed on your OS.
At the command line psql, check the PostgreSQL version with the command
psql -V.You’ll also need PostgreSQL database accessibility to try out the samples shown in this PostgreSQL cheat sheet.
NOTE: Here are some useful tips regarding commands. When writing code in psql, always end your SQL statement with a semicolon (;). If you don’t and push Return, your code will extend to the next line of code without breaking at the place where you wanted it to end.
Another tip for writing SQL statements is to remember to enclose your strings in PostgreSQL with singular quotes, not doubles. This one is correct: 'string here' for example. A syntax error will happen if you use doubles.
Finally, to quickly get away from a long results list or a command you started or completed, push CTRL+C.
Accessing PostgreSQL using the ‘psql’ command line interface
- From your server on your localhost, connect to your database in PostgreSQL with the command
psql.
psql postgres |
- Alternatively to the above command, input your username, host, and then database name to make a Postgres database connection.
psql -U some_username -h 127.0.0.1 -d some_database |
NOTE: See the flags in the above code.
- Your username in Postgres comes after the flag
-U - The IP address or host domain goes after the flag
-h - The database PostgreSQL name is inputted after the flag
-d
PostgreSQL cheat sheet of useful SQL queries and commands
This PostgreSQL cheat sheet contains some of the most frequently-used commands to perform basic computing software programming functions so that you can code with efficiency.
Use ‘SELECT’ to get a Postgres table’s column names
- Obtain the names of a table’s columns with the
information_schemacommand:
SELECT*FROM information_schema.columns WHERE some_table ='some_table'; |
Postgresql Dba Command Cheat Sheet
- You can also access the names of a public table’s column with the
table_schemacommand:
SELECT*FROM information_schema.columns WHERE table_schema ='public' AND some_table ='some_table'; |
PostgreSQL cheat sheet commands for modifying tables
- Use the
INSERT INTOstatement to add a value to a table:
INSERTINTO some_table(col1, col2)VALUES(value1,value2); |
NOTE: The above command adds two columns and two values. See (col1, col2) and (value1, value2) in the SQL statement. Place a comma after each indicated column or value within the parenthesis when you have more than one to add to a table.
- Use the
INSERT INTOandSELECTstatement to add a table’s column data to a different table:
INSERTINTO table1(column_list)SELECT column_list FROM table2; |
- Save table updates with the
UPDATEstatement:
- Use the
UPDATEstatement for condition matching in a table:
UPDATE some_table SET col1 = new_val, col2 = new_val WHERE condition; |
- Use the
DELETE FROMstatement to remove all records from a table in Postgres:
NOTE: An option to remove all records from a table in Postgres is to use the command TRUNCATE followed by naming the table you want to delete.
- Use the
DELETE FROMstatement to remove data pertaining to a condition:
DELETEFROM some_table WHERE condition; |
PostgreSQL cheat sheet for managing databases
- Make a database with the
CREATE DATABASEstatement:
NOTE: A database may already exist, so to avoid raising an exception, use the IF NOT EXISTS clause after the CREATE DATABASE statement.
- Use
DROP DATABASEto delete a database forever:
DROPDATABASE[IFNOTEXISTS] db_name; |
NOTE: You won’t get an error message prompt if you add the IF NOT EXISTS clause.
Use the a PostgreSQL ‘SELECT’ statement to query data
Query data in a table with these various SELECT statement command.
- Add the wildcard asterisk
*symbol to have every record in a PostgreSQL table return in the results page.
- Indicate which columns to query:
SELECT col1, col2 FROM some_table; |
- Query a filtered table:
- Include the clause
WHEREto specify the columns you want to query:
SELECT some_col, another_col FROM some_table WHERE some_int >50; |
- Perform a column query and give the column an alias with this statement:
Here are some commands to query in PostgreSQL using operators.
- Use the operator
LIKEto query a character string pattern match:
To query a set of operations in PostgreSQL:
Using the LIKE operator:
SELECT*FROM some_table WHERECOLUMNLIKE'%value'; |
- Use the operator
BETWEENto query a table range:
SELECT*FROM some_table WHERECOLUMNBETWEEN low AND high; |
- Use the operator
INto add more than one condition or value to yourWHEREclause in your statement:
SELECT*FROM some_table WHERECOLUMNIN(value1, value2); |
- Use the operator
UNIONto merge at least twoSELECTstatement results sets.
- Use the operator
EXCEPTto put together twoSELECTstatements that will only return rows that are not in the second statement.
SELECT*FROM table1 EXCEPTSELECT*FROM table2; |
- Use the operator
INTERSECTto have the results set to reflect every record picked by at least two statements. If a record fails to match each query, it won’t appear in the results set:
Postgresql Command Line Cheat Sheet
- Use the clause
LIMITto return a limited amount of rows. In the statement below,OFFSETrows are skipped:
SELECT*FROM some_table LIMITLIMIT OFFSET offset ORDERBY column_name; |
Here are a few SQL statements for querying multiple tables.
- Make a multiple Postgres table query with the
INNER JOINstatement:
SELECT*FROM table1 INNERJOIN table2 ON conditions |
- Make a multiple Postgres table query with the
LEFT JOINstatement:
- Make a multiple Postgres table query with the
FULL OUTER JOINstatement:
SELECT*FROM table1 FULLOUTERJOIN table2 ON conditions |
- Make a multiple Postgres table query with the
CROSSJOINstatement:
SELECT*FROM table1 CROSSJOIN table2 ON conditions |
- Make a multiple Postgres table query with the
NATURAL JOINstatement:
SELECT*FROM table1 NATURALJOIN table2 ON conditions |
Here are a few common SELECT statements for displaying table rows.
- Use the wildcard
(*)to show all table rows:

Postgresql Cheat Sheet Commands
- Use the
ORDER BYclause to sort the order of table rows in the results:
SELECT column_name FROM some_table ORDERBY column_name [ASC|DESC]; |
- To group table data, use the clause
GROUP BY:
Postgres Command Line
- Use both clauses
HAVINGandGROUP BYto specify the criteria for grouping the data results:
Postgresql Cheat Sheet 9.5
SELECT*FROM some_table GROUPBY col1 HAVING condition; |
Conclusion on the PostgreSQL cheat sheet
Postgresql Tutorial Pdf
A helpful PostgreSQL cheat sheet is meant to help you reduce the time you spend on your daily coding projects. Make it an accessible reference of common SQL statements and other commands are at your fingertips. This way, you won’t have to wonder if the syntax is off the mark. The most beneficial result is that you’ll likely cut down on unnecessarily raised exceptions every day.




