Changes between Version 2 and Version 3 of Postgres HowTo useful commands


Ignore:
Timestamp:
08/30/16 12:19:10 (8 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Postgres HowTo useful commands

    v2 v3  
    66{{{
    77psql -d mydb -U myuser
     8}}}
     9
     10== Log in to no database
     11{{{
     12psql -d postgres -U myuser
     13}}}
     14
     15== List Databases
     16{{{
     17\l
     18}}}
     19
     20== Switch Databases
     21{{{
     22\c dbname
    823}}}
    924