psql - PostgreSQL interactive terminal
- \du - list of roles
- \l - list of databases
- \dn - list schemas
- \dft - list of functions
- \dt - list of tables
- \dt schema_name.* - показать все таблицы в нужной схеме
- \dt *.* - все таблицы во всех схемах
- \d - list tables, views, and sequences
- \d+ tablename - структура конкретной таблицы
- \conninfo - connection information
- \x - вывод в стоблик
- \pset pager off - вывод в один лист без прокрутки
Обсуждение