2014-05-08 15:10:08 +01:00
|
|
|
# psql
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> PostgreSQL command-line client.
|
2019-05-29 14:53:55 +01:00
|
|
|
> More information: <https://www.postgresql.org/docs/current/app-psql.html>.
|
2014-05-08 15:10:08 +01:00
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Connect to the database. It connects to localhost using default port 5432 with default user as currently logged in user:
|
2014-05-08 15:10:08 +01:00
|
|
|
|
|
|
|
`psql {{database}}`
|
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Connect to the database on given server host running on given port with given username, without a password prompt:
|
2014-05-08 15:10:08 +01:00
|
|
|
|
2014-05-12 12:44:31 +01:00
|
|
|
`psql -h {{host}} -p {{port}} -U {{username}} {{database}}`
|
2014-05-08 15:10:08 +01:00
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Connect to the database; user will be prompted for password:
|
2015-12-30 13:07:35 +00:00
|
|
|
|
|
|
|
`psql -h {{host}} -p {{port}} -U {{username}} -W {{database}}`
|
|
|
|
|
2016-08-08 08:48:21 +01:00
|
|
|
- Execute a single SQL query or PostgreSQL command on the given database (useful in shell scripts):
|
2014-05-08 15:10:08 +01:00
|
|
|
|
2014-05-12 12:44:31 +01:00
|
|
|
`psql -c '{{query}}' {{database}}`
|
2014-05-08 15:10:08 +01:00
|
|
|
|
2016-08-08 08:11:27 +01:00
|
|
|
- Execute commands from a file on the given database:
|
2014-05-08 15:10:08 +01:00
|
|
|
|
2016-08-08 08:11:27 +01:00
|
|
|
`psql {{database}} -f {{file.sql}}`
|