Changes between Version 2 and Version 3 of Postgres HowTo useful commands
- Timestamp:
- 08/30/16 12:19:10 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Postgres HowTo useful commands
v2 v3 6 6 {{{ 7 7 psql -d mydb -U myuser 8 }}} 9 10 == Log in to no database 11 {{{ 12 psql -d postgres -U myuser 13 }}} 14 15 == List Databases 16 {{{ 17 \l 18 }}} 19 20 == Switch Databases 21 {{{ 22 \c dbname 8 23 }}} 9 24