Connect to psql via console:

sudo -u postgres psql
DescriptionCommand
List database\list

\l
List database with extra information\list+

\l+
Connect to a database\connect <database-name> <username>

\c <database-name> <username>
List tables\dt
Describe a table\d
Describe a table with extra information\d+
List schemas\dn
List user and roles\du
List functions\df
List views\dv
Save query result to file\out <filename>

\o <filename>
<run-some-query>
\o
Quit\quit

\q


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *