Skip to content

Instantly share code, notes, and snippets.

@blacksun1
Last active June 21, 2017 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blacksun1/4634444af30c29d72bd874b38d87cf1f to your computer and use it in GitHub Desktop.
Save blacksun1/4634444af30c29d72bd874b38d87cf1f to your computer and use it in GitHub Desktop.
psql cheatsheet

psql cheatsheet

list databases

\list

Connect to a database

\connect dbname

Show what database I am currently connected to

select current_database();

Show what tables are in the current database

\dt

Show what columns are in a table

\d+ "tableName"

Quit

\q

Turn off paging

\pset pager off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment