This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
сервис_postgresql [2023/11/28 09:26] val created |
сервис_postgresql [2025/02/28 10:31] (current) val [psql] |
||
---|---|---|---|
Line 2: | Line 2: | ||
* [[https://habr.com/ru/articles/578744/|Запускаем PostgreSQL в Docker: от простого к сложному]] | * [[https://habr.com/ru/articles/578744/|Запускаем PostgreSQL в Docker: от простого к сложному]] | ||
+ | |||
+ | ===== psql ===== | ||
+ | |||
+ | * [[https://stackoverflow.com/questions/70356736/postgres-lean-docker-image-containing-only-psql-client|Postgres lean Docker image containing only "psql" client]] | ||
+ | * [[https://www.postgresqltutorial.com/postgresql-administration/psql-commands/|17 Practical psql Commands That You Don’t Want To Miss]] | ||
+ | |||
+ | <code> | ||
+ | postgres=# \l | ||
+ | |||
+ | postgres=# \c blogs | ||
+ | |||
+ | blogs=# \dt | ||
+ | |||
+ | blogs=# \d table_name | ||
+ | </code> |