- | - |
---|---|
\h |
Help on syntax of SQL commands |
\h DELETE |
DELETE SQL statement syntax |
\? |
List of PostgreSQL command |
Run in PostgreSQL console |
Getting Started
Switch and connect
$ sudo -u postgres psql
List all databases
postgres=# \l
Connect to the database named postgres
postgres=# \c postgres
Disconnect
postgres=# \q
postgres=# \!
Comments